1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(list-options): Put "obsolete" msg in buffer.

This commit is contained in:
Richard M. Stallman 2006-06-16 15:15:30 +00:00
parent 730df8dbd5
commit ac2c512030

View file

@ -41,6 +41,8 @@ It is now better to use Customize instead."
(interactive)
(with-output-to-temp-buffer "*List Options*"
(let (vars)
(princ "This facility is obsolete; we recommend using M-x customize instead.")
(mapatoms (function (lambda (sym)
(if (user-variable-p sym)
(setq vars (cons sym vars))))))