From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: Request for enhancement: C-u C-M-n to move to start of _next_ list Date: 17 Feb 2004 07:37:49 -0500 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1077021630 8290 80.91.224.253 (17 Feb 2004 12:40:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 Feb 2004 12:40:30 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Feb 17 13:40:21 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1At4WT-0006cI-00 for ; Tue, 17 Feb 2004 13:40:21 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1At4WT-0005Or-00 for ; Tue, 17 Feb 2004 13:40:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1At4W1-0002Ia-RC for emacs-devel@quimby.gnus.org; Tue, 17 Feb 2004 07:39:53 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1At4VU-0001j1-KU for emacs-devel@gnu.org; Tue, 17 Feb 2004 07:39:20 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1At4Ue-0000yQ-3t for emacs-devel@gnu.org; Tue, 17 Feb 2004 07:39:00 -0500 Original-Received: from [207.245.84.69] (helo=colo.agora-net.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1At4U6-0000QA-7d for emacs-devel@gnu.org; Tue, 17 Feb 2004 07:37:54 -0500 Original-Received: from ttn by colo.agora-net.com with local (Exim 3.34 #1) id 1At4U2-0001j5-00; Tue, 17 Feb 2004 07:37:50 -0500 Original-To: Alan Mackenzie In-Reply-To: Alan Mackenzie's message of "Mon, 16 Feb 2004 16:13:10 +0000 (GMT)" Original-Lines: 15 X-Mailer: Gnus v5.7/Emacs 20.7 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:20020 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:20020 Alan Mackenzie writes: + If @code{forward-list} is invoked with a bare prefix + (@kbd{C-u C-M-n}), it will move to the start of the + @emph{next} parenthetical group. this conflicts w/ the current meaning of C-u prefix for `forward-list'. here's another more congruent approach: (defun forward-list/comment (&optional arg) (interactive "p") (forward-list arg) (forward-comment 1)) thi