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


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/lisp/macros.el
Date: Sat, 06 Nov 2004 07:07:45 -0500

Index: emacs/lisp/macros.el
diff -c emacs/lisp/macros.el:1.42 emacs/lisp/macros.el:1.43
*** emacs/lisp/macros.el:1.42   Tue Aug 31 23:38:53 2004
--- emacs/lisp/macros.el        Sat Nov  6 11:48:25 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]