diff options
author | Jim Blandy <jimb@redhat.com> | 1991-05-09 21:50:55 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1991-05-09 21:50:55 +0000 |
commit | f9f9507e1d3202408b73b0c32a6e504502a70d5e (patch) | |
tree | f53ad33f6276bfcd7d883fc82c7a6f8795c80f6a /lisp/edmacro.el | |
parent | 745bc783eb8bd84b07a7d512660947ec214e71eb (diff) | |
download | emacs-f9f9507e1d3202408b73b0c32a6e504502a70d5e.tar.gz emacs-f9f9507e1d3202408b73b0c32a6e504502a70d5e.tar.bz2 emacs-f9f9507e1d3202408b73b0c32a6e504502a70d5e.zip |
*** empty log message ***
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index a59edee69a0..90d8ebed47c 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -27,6 +27,7 @@ ;;; The user-level commands for editing macros. +;;;###autoload (defun edit-last-kbd-macro (&optional prefix buffer hook) "Edit the most recently defined keyboard macro." (interactive "P") @@ -34,6 +35,7 @@ (function (lambda (x arg) (setq last-kbd-macro x))) prefix buffer hook)) +;;;###autoload (defun edit-kbd-macro (cmd &optional prefix buffer hook in-hook out-hook) "Edit a keyboard macro which has been given a name by `name-last-kbd-macro'. \(See also `edit-last-kbd-macro'.)" @@ -49,6 +51,7 @@ 'x))) prefix buffer hook cmd))) +;;;###autoload (defun read-kbd-macro (start end) "Read the region as a keyboard macro definition. The region is interpreted as spelled-out keystrokes, e.g., \"M-x abc RET\". |