* options.el (list-options): Use custom-variable-p, rather than obsolete alias.
This commit is contained in:
parent
b3531901c6
commit
db785726cc
2 changed files with 7 additions and 2 deletions
|
|
@ -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 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 <monnier@iro.umontreal.ca>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue