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

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

M-x locate-library doesn't provide default


From: Kevin Rodgers
Subject: M-x locate-library doesn't provide default
Date: Thu, 31 Jul 2003 09:36:27 -0600
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

If point is near "foo" in an expression like
        (load-library "foo")
or
        (require 'foo)
then `M-x locate-library' ought to provide it as the default.

Here's a patch:

*** emacs-21.3/lisp/help.el.orig        Thu Sep  5 16:47:16 2002
--- emacs-21.3/lisp/help.el     Thu Jul 31 09:35:03 2003
***************
*** 1036,1044 ****
  When called from a program, the file name is normaly returned as a
  string.  When run interactively, the argument INTERACTIVE-CALL is t,
  and the file name is displayed in the echo area."
!   (interactive (list (read-string "Locate library: ")
!                    nil nil
!                    t))
    (let (result)
      (catch 'answer
        (mapc
--- 1036,1046 ----
  When called from a program, the file name is normaly returned as a
  string.  When run interactively, the argument INTERACTIVE-CALL is t,
  and the file name is displayed in the echo area."
!   (interactive
!    (let ((lib (current-word)))
!      (list (read-string (format "Locate library (default %s): " lib)
!                         nil nil lib)
!            nil nil t)))
    (let (result)
      (catch 'answer
        (mapc

--
Kevin Rodgers





reply via email to

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