emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112696: * options.el (list-options):


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112696: * options.el (list-options): Use custom-variable-p, rather than obsolete alias.
Date: Thu, 23 May 2013 20:42:55 -0700
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112696
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2013-05-23 20:42:55 -0700
message:
  * options.el (list-options): Use custom-variable-p, rather than obsolete 
alias.
modified:
  lisp/ChangeLog
  lisp/obsolete/options.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-05-23 21:01:47 +0000
+++ b/lisp/ChangeLog    2013-05-24 03:42:55 +0000
@@ -1,7 +1,12 @@
+2013-05-24  Glenn Morris  <address@hidden>
+
+       * obsolete/options.el (list-options): Use custom-variable-p,
+       rather than obsolete alias.
+
 2013-05-23  Sam Steingold  <address@hidden>
 
        * simple.el (shell-command-on-region): Pass the `replace' argument
-       down to `call-process-region' to comply witht he doc as reported on
+       down to `call-process-region' to comply with the doc as reported on
        
<http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
 
 2013-05-23  Stefan Monnier  <address@hidden>

=== modified file 'lisp/obsolete/options.el'
--- a/lisp/obsolete/options.el  2013-01-01 09:11:05 +0000
+++ b/lisp/obsolete/options.el  2013-05-24 03:42:55 +0000
@@ -42,7 +42,7 @@
       (princ "This facility is obsolete; we recommend using M-x customize 
instead.")
 
       (mapatoms (function (lambda (sym)
-                           (if (user-variable-p sym)
+                           (if (custom-variable-p sym)
                                (setq vars (cons sym vars))))))
       (setq vars (sort vars 'string-lessp))
       (while vars


reply via email to

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