From db785726ccd9d3788c5c0ae70c59ea67d3a64447 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 23 May 2013 20:42:55 -0700 Subject: [PATCH] * options.el (list-options): Use custom-variable-p, rather than obsolete alias. --- lisp/ChangeLog | 7 ++++++- lisp/obsolete/options.el | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) 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 -- 2.39.2