From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Patch that adds help to isearch Date: Mon, 28 Nov 2005 08:21:05 +0100 Message-ID: <438AAFE1.9020109@student.lu.se> References: <4386466E.4090407@student.lu.se> <438A38F2.5010409@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1133162928 20148 80.91.229.2 (28 Nov 2005 07:28:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 28 Nov 2005 07:28:48 +0000 (UTC) Cc: rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Nov 28 08:28:46 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EgdLP-0002AU-Vh for ged-emacs-devel@m.gmane.org; Mon, 28 Nov 2005 08:22:37 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EgdLP-0002hF-1v for ged-emacs-devel@m.gmane.org; Mon, 28 Nov 2005 02:22:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EgdK8-0002g9-AY for emacs-devel@gnu.org; Mon, 28 Nov 2005 02:21:16 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EgdK3-0002f5-Q0 for emacs-devel@gnu.org; Mon, 28 Nov 2005 02:21:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EgdK1-0002en-6S for emacs-devel@gnu.org; Mon, 28 Nov 2005 02:21:10 -0500 Original-Received: from [81.228.11.159] (helo=pne-smtpout2-sn1.fre.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EgdJz-0001ms-C4; Mon, 28 Nov 2005 02:21:07 -0500 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout2-sn1.fre.skanova.net (7.2.069.1) id 43871827000DC9D8; Mon, 28 Nov 2005 08:21:06 +0100 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: Lennart Borgman In-Reply-To: <438A38F2.5010409@student.lu.se> 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:46693 Archived-At: Lennart Borgman wrote: >*************** >*** 1081,1091 **** > ;; The search done message is confusing when the string > ;; is empty, so erase it. > (if (equal isearch-string "") >! (message ""))))) > >! (quit ; handle abort-recursive-edit >! (isearch-abort) ;; outside of let to restore outside global values >! ))) > > (defun isearch-nonincremental-exit-minibuffer () > (interactive) >--- 1084,1094 ---- > ;; The search done message is confusing when the string > ;; is empty, so erase it. > (if (equal isearch-string "") >! (message "")))) > >! (quit ; handle abort-recursive-edit >! (isearch-abort) ;; outside of let to restore outside global values >! )))) > > Oops! There is an ")" too much after quit here.