diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-02-02 06:13:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-02-02 06:13:55 +0000 |
commit | b1a2be3b87a4050f816017faaa618d3f76d0cf89 (patch) | |
tree | 55fa9da50a6a423852c4d7934d3a42ca89582b8f /lisp/edmacro.el | |
parent | 9113797ecf51601302cacb3adc99d96dfca94175 (diff) | |
download | emacs-b1a2be3b87a4050f816017faaa618d3f76d0cf89.tar.gz |
(edmacro-original-buffer, edmacro-finish-hook)
(edmacro-store-hook): Add defvars.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 35be9ba054d..944bd856001 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -88,6 +88,10 @@ Default nil means to write characters above \\177 in octal notation.") (define-key edmacro-mode-map "\C-c\C-c" 'edmacro-finish-edit) (define-key edmacro-mode-map "\C-c\C-q" 'edmacro-insert-key)) +(defvar edmacro-store-hook) +(defvar edmacro-finish-hook) +(defvar edmacro-original-buffer) + ;;;###autoload (defun edit-kbd-macro (keys &optional prefix finish-hook store-hook) "Edit a keyboard macro. |