From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Mario Lang Newsgroups: gmane.emacs.devel Subject: replace.el: Remove one \ Date: Mon, 20 May 2002 18:56:18 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: <87znyuhi6l.fsf@lexx.delysid.org> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1021913640 30015 127.0.0.1 (20 May 2002 16:54:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 20 May 2002 16:54:00 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 179qQ4-0007o0-00 for ; Mon, 20 May 2002 18:54:00 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 179qe6-0003TZ-00 for ; Mon, 20 May 2002 19:08:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 179qQI-0005Wp-00; Mon, 20 May 2002 12:54:14 -0400 Original-Received: from 212186194087.graz.teleweb.at ([212.186.194.87] helo=lexx.delysid.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 179qO5-0005Sq-00 for ; Mon, 20 May 2002 12:51:58 -0400 Original-Received: from mlang by lexx.delysid.org with local (Exim 3.35 #1 (Debian)) id 179qSO-0001X4-00 for ; Mon, 20 May 2002 18:56:24 +0200 Original-To: emacs-devel@gnu.org Original-Lines: 27 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2 (i386-debian-linux-gnu) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:4194 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:4194 Hi. Reading source code made me aware of the following: (Or is there a special reason to escape the o?) Index: lisp/replace.el =================================================================== RCS file: /cvsroot/emacs/emacs/lisp/replace.el,v retrieving revision 1.143 diff -u -r1.143 replace.el --- lisp/replace.el 15 May 2002 19:35:54 -0000 1.143 +++ lisp/replace.el 20 May 2002 16:50:10 -0000 @@ -440,7 +440,7 @@ (define-key map [mouse-2] 'occur-mode-mouse-goto) (define-key map "\C-c\C-c" 'occur-mode-goto-occurrence) (define-key map "\C-m" 'occur-mode-goto-occurrence) - (define-key map "\o" 'occur-mode-goto-occurrence-other-window) + (define-key map "o" 'occur-mode-goto-occurrence-other-window) (define-key map "\C-o" 'occur-mode-display-occurrence) (define-key map "\M-n" 'occur-next) (define-key map "\M-p" 'occur-prev) -- CYa, Mario