emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103358: edmacro.el trivia.


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103358: edmacro.el trivia.
Date: Sat, 19 Feb 2011 16:16:54 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103358
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2011-02-19 16:16:54 -0800
message:
  edmacro.el trivia.
  
  * lisp/edmacro.el: Remove old header comment.
  (edmacro-eight-bits): Make it a defcustom.  Don't autoload it.
modified:
  lisp/ChangeLog
  lisp/edmacro.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-20 00:09:28 +0000
+++ b/lisp/ChangeLog    2011-02-20 00:16:54 +0000
@@ -1,5 +1,8 @@
 2011-02-20  Glenn Morris  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/edmacro.el'
--- a/lisp/edmacro.el   2011-01-25 04:08:28 +0000
+++ b/lisp/edmacro.el   2011-02-20 00:16:54 +0000
@@ -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)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]