From: Glenn Morris Date: Fri, 24 May 2013 03:42:55 +0000 (-0700) Subject: * options.el (list-options): Use custom-variable-p, rather than obsolete alias. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~2026^2~217 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db785726ccd9d3788c5c0ae70c59ea67d3a64447;p=emacs.git * options.el (list-options): Use custom-variable-p, rather than obsolete alias. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b37e0aad393..ee17699eb40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,12 @@ +2013-05-24 Glenn Morris + + * obsolete/options.el (list-options): Use custom-variable-p, + rather than obsolete alias. + 2013-05-23 Sam Steingold * 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 2013-05-23 Stefan Monnier diff --git a/lisp/obsolete/options.el b/lisp/obsolete/options.el index 3c9ebc839b8..f25003e5652 100644 --- a/lisp/obsolete/options.el +++ b/lisp/obsolete/options.el @@ -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