From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Harald Maier Newsgroups: gmane.emacs.devel Subject: Re: spaces in isearch Date: Tue, 23 Nov 2004 07:07:02 +0100 Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1101190069 817 80.91.229.6 (23 Nov 2004 06:07:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 23 Nov 2004 06:07:49 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Nov 23 07:07:37 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CWTpw-0001kZ-00 for ; Tue, 23 Nov 2004 07:07:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWTz1-0000YC-P3 for ged-emacs-devel@m.gmane.org; Tue, 23 Nov 2004 01:16:59 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CWTyl-0000Y6-EQ for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:16:43 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CWTyk-0000Xp-Ks for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:16:42 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CWTyk-0000XT-AN for emacs-devel@gnu.org; Tue, 23 Nov 2004 01:16:42 -0500 Original-Received: from [212.227.126.173] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CWTpS-0005Ab-PV; Tue, 23 Nov 2004 01:07:06 -0500 Original-Received: from [212.227.126.205] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1CWTpR-0002nJ-00; Tue, 23 Nov 2004 07:07:05 +0100 Original-Received: from [80.128.44.53] (helo=ate.maierh) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 1CWTpR-0000GS-00; Tue, 23 Nov 2004 07:07:05 +0100 Original-Received: by ate.maierh (Postfix, from userid 500) id 9AD5319600; Tue, 23 Nov 2004 07:07:02 +0100 (CET) Original-To: rms@gnu.org In-Reply-To: (Richard Stallman's message of "Sat, 20 Nov 2004 20:10:22 -0500") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux) X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:7f9705e6678292fb4e27195dea438aa3 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: main.gmane.org gmane.emacs.devel:30271 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:30271 Richard Stallman writes: > I wrote these changes to isearch.el that take advantage of the new > search feature I just installed. It fixes the bug, but has a > drawback: C-q SPC would no longer work as a way to search for a > literal space. One would need to write [ ]. This is actually more > logical, but some users might be accustomed to C-q SPC. What do > people think? If I now use '^ +A' in an interactive regexp search then emacs hangs in the minibuffer. In a version from October 17 it doesn't happen. To reproduce this use: ,---- | $ emacs -Q | M-x man bash | C-u C-s ^ +A `---- Harald