From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Re: line-line-move-visual: was line motion problem Date: Mon, 21 Jul 2008 09:09:18 -0700 Message-ID: <200807211609.m6LG9J0S002694@sallyv1.ics.uci.edu> References: <18557.63556.231489.523637@gargle.gargle.HOWL> <5F62534C-D5CE-4364-8F73-E1AE0D61B4E2@gmail.com> <87abghlqs2.fsf@stupidchicken.com> <87hcap3ct7.fsf@stupidchicken.com> <87mykg84aj.fsf@stupidchicken.com> <200807181530.m6IFUHVp029662@sallyv1.ics.uci.edu> <06ED973A-F762-4586-9913-37B3622C8644@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1216657006 9260 80.91.229.12 (21 Jul 2008 16:16:46 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 21 Jul 2008 16:16:46 +0000 (UTC) Cc: Miles Bader , Chong Yidong , emacs-devel@gnu.org, Stefan Monnier , raman@users.sourceforge.net To: David Reitter Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 21 18:17:34 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KKy4r-0002Ch-JJ for ged-emacs-devel@m.gmane.org; Mon, 21 Jul 2008 18:17:34 +0200 Original-Received: from localhost ([127.0.0.1]:58755 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KKy3x-0006dz-BN for ged-emacs-devel@m.gmane.org; Mon, 21 Jul 2008 12:16:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KKxzP-0004nx-Sc for emacs-devel@gnu.org; Mon, 21 Jul 2008 12:11:55 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KKxzO-0004n9-CH for emacs-devel@gnu.org; Mon, 21 Jul 2008 12:11:55 -0400 Original-Received: from [199.232.76.173] (port=34922 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KKxzO-0004n4-6P for emacs-devel@gnu.org; Mon, 21 Jul 2008 12:11:54 -0400 Original-Received: from sallyv1.ics.uci.edu ([128.195.1.109]:47778) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA1:24) (Exim 4.60) (envelope-from ) id 1KKxzH-0000OP-I7; Mon, 21 Jul 2008 12:11:47 -0400 X-ICS-MailScanner-Watermark: 1217261359.98882@BO9XU5QbuBdo3bp+YCIOAQ Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by sallyv1.ics.uci.edu (8.13.7+Sun/8.13.7) with ESMTP id m6LG9J0S002694; Mon, 21 Jul 2008 09:09:19 -0700 (PDT) In-Reply-To: <06ED973A-F762-4586-9913-37B3622C8644@gmail.com> (David Reitter's message of "Mon, 21 Jul 2008 11:49:52 -0400") Original-Lines: 38 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-kernel: by monty-python.gnu.org: Solaris 10 (beta) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:101091 Archived-At: David Reitter writes: > On 21 Jul 2008, at 00:49, Chong Yidong wrote: > Any objections to the patch below. Some nits below: > *** whitespace.el 06 May 2008 03:57:59 -0400 1.80 > --- whitespace.el 21 Jul 2008 11:04:45 -0400 > *************** > *** 2352,2357 **** > --- 2352,2406 ---- > (whitespace-mode -1))) > nil) ; continue standard unloading > > + > + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > + > + > + > + ;; Show-newlines-mode > + (defface blank-newline ^^^^ Everything else in the file uses "whitespace", better not use a new prefix. > + '((((class color) (background dark)) > + (:foreground "lightgrey" :bold nil)) > + (((class color) (background light)) > + ( :foreground "lightgrey" :bold nil)) > + (t (:bold nil :underline t))) > + "Face used to visualize NEWLINE char mapping. > + > + See `blank-display-mappings'." > + :group 'blank) ^^^^^^ This group does not exist. Didn't look at the rest...