emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/macros.el [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/macros.el [emacs-unicode-2]
Date: Thu, 11 Nov 2004 22:02:35 -0500

Index: emacs/lisp/macros.el
diff -c emacs/lisp/macros.el:1.40.2.2 emacs/lisp/macros.el:1.40.2.3
*** emacs/lisp/macros.el:1.40.2.2       Sat Sep  4 09:14:25 2004
--- emacs/lisp/macros.el        Fri Nov 12 02:52:52 2004
***************
*** 63,69 ****
  
  To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  use this command, and then save the file."
!   (interactive "CInsert kbd macro (name): \nP")
    (let (definition)
      (if (string= (symbol-name macroname) "")
        (progn
--- 63,76 ----
  
  To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
  use this command, and then save the file."
!   (interactive (list (intern (completing-read "Insert kbd macro (name): " 
!                                             obarray 
!                                             (lambda (elt)
!                                               (and (fboundp elt)
!                                                    (or (stringp 
(symbol-function elt))
!                                                        (vectorp 
(symbol-function elt)))))
!                                             t))
!                    current-prefix-arg))
    (let (definition)
      (if (string= (symbol-name macroname) "")
        (progn




reply via email to

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