emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#9952: closed (Default value displayed twice in `go


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#9952: closed (Default value displayed twice in `goto-line' prompt)
Date: Sun, 29 Jul 2012 18:20:02 +0000

Your message dated Sun, 29 Jul 2012 21:12:07 +0300
with message-id <address@hidden>
and subject line Re: bug#9952: Default value displayed twice in `goto-line' 
prompt
has caused the debbugs.gnu.org bug report #9952,
regarding Default value displayed twice in `goto-line' prompt
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
9952: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9952
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Default value displayed twice in `goto-line' prompt Date: Fri, 4 Nov 2011 17:44:30 +0100
Hi,

>From "emacs -Q":
1. Type "3 M-g g".

Observed minibuffer prompt: "Goto line (3) (default 3): ".
Expected: "Goto line (default 3): ".

I think that the following patch fixes this problem:

=== modified file 'lisp/simple.el'
--- lisp/simple.el      2011-10-27 03:01:40 +0000
+++ lisp/simple.el      2011-11-04 16:36:39 +0000
@@ -924,10 +924,7 @@
                 (concat " in " (buffer-name buffer))
               "")))
        ;; Read the argument, offering that number (if any) as default.
-       (list (read-number (format (if default "Goto line%s (%s): "
-                                    "Goto line%s: ")
-                                  buffer-prompt
-                                  default)
+       (list (read-number (format "Goto line%s: " buffer-prompt)
                           default)
             buffer))))
   ;; Switch to the desired buffer, one way or another.



In GNU Emacs 24.0.90.1 (i386-mingw-nt6.1.7601)
 of 2011-10-27 on DANI-PC
Windowing system distributor `Microsoft Corp.', version 6.1.7601
configured using `configure --with-gcc (4.5)'

-- 
Dani Moncayo



--- End Message ---
--- Begin Message --- Subject: Re: bug#9952: Default value displayed twice in `goto-line' prompt Date: Sun, 29 Jul 2012 21:12:07 +0300 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (x86_64-pc-linux-gnu)
> Ping.

Thanks, installed.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]