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: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/macros.el
Date: Sun, 28 Nov 2004 19:18:16 -0500

Index: emacs/lisp/macros.el
diff -c emacs/lisp/macros.el:1.43 emacs/lisp/macros.el:1.44
*** emacs/lisp/macros.el:1.43   Sat Nov  6 11:48:25 2004
--- emacs/lisp/macros.el        Sun Nov 28 23:57:47 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]