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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/macros.el [lexbind]
Date: Wed, 08 Dec 2004 19:20:37 -0500

Index: emacs/lisp/macros.el
diff -c emacs/lisp/macros.el:1.37.8.4 emacs/lisp/macros.el:1.37.8.5
*** emacs/lisp/macros.el:1.37.8.4       Fri Nov 12 04:21:13 2004
--- emacs/lisp/macros.el        Wed Dec  8 23:36:18 2004
***************
*** 63,74 ****
  
  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)
--- 63,75 ----
  
  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))
!                                                        (get elt 'kmacro))))
                                              t))
                     current-prefix-arg))
    (let (definition)




reply via email to

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