diff options
author | Glenn Morris <rgm@gnu.org> | 2011-02-19 16:16:54 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-02-19 16:16:54 -0800 |
commit | e17816e57e4795e0fd69ab561278c8a302c96771 (patch) | |
tree | f2c66af4838db648dd6190056bf28add778726d8 /lisp/edmacro.el | |
parent | 18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5 (diff) | |
download | emacs-e17816e57e4795e0fd69ab561278c8a302c96771.tar.gz |
edmacro.el trivia.
* lisp/edmacro.el: Remove old header comment.
(edmacro-eight-bits): Make it a defcustom. Don't autoload it.
Diffstat (limited to 'lisp/edmacro.el')
-rw-r--r-- | lisp/edmacro.el | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 769d7fceb90..ac0a7f47e55 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el @@ -61,11 +61,6 @@ ;; With a prefix argument, `edit-kbd-macro' will format the ;; macro in a more concise way that omits the comments. -;; This package requires GNU Emacs 19 or later, and daveg's CL -;; package 2.02 or later. (CL 2.02 comes standard starting with -;; Emacs 19.18.) This package does not work with Emacs 18 or -;; Lucid Emacs. - ;;; Code: (eval-when-compile @@ -75,10 +70,11 @@ ;;; The user-level commands for editing macros. -;;;###autoload -(defvar edmacro-eight-bits nil - "*Non-nil if `edit-kbd-macro' should leave 8-bit characters intact. -Default nil means to write characters above \\177 in octal notation.") +(defcustom edmacro-eight-bits nil + "Non-nil if `edit-kbd-macro' should leave 8-bit characters intact. +Default nil means to write characters above \\177 in octal notation." + :type 'boolean + :group 'kmacro) (defvar edmacro-mode-map (let ((map (make-sparse-keymap))) |