/[emacs]/emacs/lisp/macros.el
ViewVC logotype

Diff of /emacs/lisp/macros.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.42 by teirllm, Tue Aug 31 23:38:53 2004 UTC revision 1.43 by eliz, Sat Nov 6 11:48:25 2004 UTC
# Line 63  bindings. Line 63  bindings.
63    
64  To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',  To save a kbd macro, visit a file of Lisp code such as your `~/.emacs',
65  use this command, and then save the file."  use this command, and then save the file."
66    (interactive "CInsert kbd macro (name): \nP")    (interactive (list (intern (completing-read "Insert kbd macro (name): "
67                                                  obarray
68                                                  (lambda (elt)
69                                                    (and (fboundp elt)
70                                                         (or (stringp (symbol-function elt))
71                                                             (vectorp (symbol-function elt)))))
72                                                  t))
73                         current-prefix-arg))
74    (let (definition)    (let (definition)
75      (if (string= (symbol-name macroname) "")      (if (string= (symbol-name macroname) "")
76          (progn          (progn

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26