diff options
| author | Glenn Morris | 2011-02-19 16:16:54 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-19 16:16:54 -0800 |
| commit | e17816e57e4795e0fd69ab561278c8a302c96771 (patch) | |
| tree | f2c66af4838db648dd6190056bf28add778726d8 | |
| parent | 18cfb5a1eaf92c9768b5399a1b1eaa734d0408e5 (diff) | |
| download | emacs-e17816e57e4795e0fd69ab561278c8a302c96771.tar.gz emacs-e17816e57e4795e0fd69ab561278c8a302c96771.zip | |
edmacro.el trivia.
* lisp/edmacro.el: Remove old header comment.
(edmacro-eight-bits): Make it a defcustom. Don't autoload it.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/edmacro.el | 14 |
2 files changed, 8 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4a98d4dd555..a2a0d9d2069 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-02-20 Glenn Morris <rgm@gnu.org> | 1 | 2011-02-20 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * edmacro.el (edmacro-eight-bits): Make it a defcustom. | ||
| 4 | Don't autoload it. | ||
| 5 | |||
| 3 | * autorevert.el (auto-revert-mode, auto-revert-tail-mode) | 6 | * autorevert.el (auto-revert-mode, auto-revert-tail-mode) |
| 4 | (global-auto-revert-ignore-buffer): Remove leading "*" from docs. | 7 | (global-auto-revert-ignore-buffer): Remove leading "*" from docs. |
| 5 | 8 | ||
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 @@ | |||
| 61 | ;; With a prefix argument, `edit-kbd-macro' will format the | 61 | ;; With a prefix argument, `edit-kbd-macro' will format the |
| 62 | ;; macro in a more concise way that omits the comments. | 62 | ;; macro in a more concise way that omits the comments. |
| 63 | 63 | ||
| 64 | ;; This package requires GNU Emacs 19 or later, and daveg's CL | ||
| 65 | ;; package 2.02 or later. (CL 2.02 comes standard starting with | ||
| 66 | ;; Emacs 19.18.) This package does not work with Emacs 18 or | ||
| 67 | ;; Lucid Emacs. | ||
| 68 | |||
| 69 | ;;; Code: | 64 | ;;; Code: |
| 70 | 65 | ||
| 71 | (eval-when-compile | 66 | (eval-when-compile |
| @@ -75,10 +70,11 @@ | |||
| 75 | 70 | ||
| 76 | ;;; The user-level commands for editing macros. | 71 | ;;; The user-level commands for editing macros. |
| 77 | 72 | ||
| 78 | ;;;###autoload | 73 | (defcustom edmacro-eight-bits nil |
| 79 | (defvar edmacro-eight-bits nil | 74 | "Non-nil if `edit-kbd-macro' should leave 8-bit characters intact. |
| 80 | "*Non-nil if `edit-kbd-macro' should leave 8-bit characters intact. | 75 | Default nil means to write characters above \\177 in octal notation." |
| 81 | Default nil means to write characters above \\177 in octal notation.") | 76 | :type 'boolean |
| 77 | :group 'kmacro) | ||
| 82 | 78 | ||
| 83 | (defvar edmacro-mode-map | 79 | (defvar edmacro-mode-map |
| 84 | (let ((map (make-sparse-keymap))) | 80 | (let ((map (make-sparse-keymap))) |