* options.el (list-options): Use custom-variable-p, rather than obsolete alias.
authorGlenn Morris <rgm@gnu.org>
Fri, 24 May 2013 03:42:55 +0000 (20:42 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 24 May 2013 03:42:55 +0000 (20:42 -0700)
lisp/ChangeLog
lisp/obsolete/options.el

index b37e0aa..ee17699 100644 (file)
@@ -1,7 +1,12 @@
+2013-05-24  Glenn Morris  <rgm@gnu.org>
+
+       * obsolete/options.el (list-options): Use custom-variable-p,
+       rather than obsolete alias.
+
 2013-05-23  Sam Steingold  <sds@gnu.org>
 
        * simple.el (shell-command-on-region): Pass the `replace' argument
-       down to `call-process-region' to comply withhe 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  <monnier@iro.umontreal.ca>
index 3c9ebc8..f25003e 100644 (file)
@@ -42,7 +42,7 @@ It is now better to use Customize instead."
       (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