]> code.delx.au - gnu-emacs/commitdiff
edmacro.el trivia.
authorGlenn Morris <rgm@gnu.org>
Sun, 20 Feb 2011 00:16:54 +0000 (16:16 -0800)
committerGlenn Morris <rgm@gnu.org>
Sun, 20 Feb 2011 00:16:54 +0000 (16:16 -0800)
* lisp/edmacro.el: Remove old header comment.
(edmacro-eight-bits): Make it a defcustom.  Don't autoload it.

lisp/ChangeLog
lisp/edmacro.el

index 4a98d4dd5557586334ba991878ec01f31caac26d..a2a0d9d2069131ffba9a58fefed38370a1660416 100644 (file)
@@ -1,5 +1,8 @@
 2011-02-20  Glenn Morris  <rgm@gnu.org>
 
+       * edmacro.el (edmacro-eight-bits): Make it a defcustom.
+       Don't autoload it.
+
        * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
        (global-auto-revert-ignore-buffer): Remove leading "*" from docs.
 
index 769d7fceb909ff9a599498663b29202294c454c0..ac0a7f47e55e18f6189a92567debd016022814fe 100644 (file)
 ;; 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:
 \f
 (eval-when-compile
 
 ;;; 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)))