From owner-freebsd-commit Mon May 22 16:30:37 1995 Return-Path: commit-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA01027 for commit-outgoing; Mon, 22 May 1995 16:30:37 -0700 Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id QAA01001 for cvs-gnu-outgoing; Mon, 22 May 1995 16:30:26 -0700 Received: from veda.is (root@veda.is [193.4.230.1]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id NAA05197 ; Mon, 22 May 1995 13:38:22 -0700 Received: (from adam@localhost) by veda.is (8.6.11/8.6.9) id UAA10762; Mon, 22 May 1995 20:37:34 GMT From: Adam David Message-Id: <199505222037.UAA10762@veda.is> Subject: Re: cvs commit: src/gnu/lib/libreadline display.c To: rgrimes@gndrsh.aac.dev.com (Rodney W. Grimes) Date: Mon, 22 May 1995 20:37:32 +0000 () Cc: adam@freefall.cdrom.com, CVS-commiters@freefall.cdrom.com, cvs-gnu@freefall.cdrom.com In-Reply-To: <199505221933.MAA05512@gndrsh.aac.dev.com> from "Rodney W. Grimes" at May 22, 95 12:33:08 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Content-Length: 1267 Sender: commit-owner@FreeBSD.org Precedence: bulk Sorry I caused aggravation, it was not intentional. It would be a good idea at such times of restriction to let the motd refer to a file containing a detailed description of the restrictions (for instance a copy of Rod's message to commiters). For this change to libreadline, a context diff shows nothing useful in addition to the output of 'cvs diff -D yesterday', but here it is anyway: *** display.c.old Mon May 22 20:01:27 1995 --- display.c Mon May 22 12:00:28 1995 *************** *** 746,752 **** escape sequences (like drawing the `unbold' sequence without a corresponding `bold') that manifests itself on certain terminals. */ ! lendiff = strlen (local_prompt); if (current_line == 0 && !_rl_horizontal_scroll_mode && lendiff > visible_length && _rl_last_c_pos > 0 && (ofd - old) >= lendiff && term_cr) --- 746,752 ---- escape sequences (like drawing the `unbold' sequence without a corresponding `bold') that manifests itself on certain terminals. */ ! lendiff = local_prompt ? strlen (local_prompt) : 0; if (current_line == 0 && !_rl_horizontal_scroll_mode && lendiff > visible_length && _rl_last_c_pos > 0 && (ofd - old) >= lendiff && term_cr) -- Adam David