diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-06-16 15:15:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-06-16 15:15:30 +0000 |
commit | ac2c512030ddd83b1bb8d9dbf05caabe5bf52f14 (patch) | |
tree | 8128d7da2bb0e426347d39c653cfde913b053a67 /lisp/obsolete | |
parent | 730df8dbd56435eaf68d4ba29504a31e746c6ce3 (diff) | |
download | emacs-ac2c512030ddd83b1bb8d9dbf05caabe5bf52f14.tar.gz |
(list-options): Put "obsolete" msg in buffer.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r-- | lisp/obsolete/options.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/obsolete/options.el b/lisp/obsolete/options.el index 1383666a9b1..968a0bac5f6 100644 --- a/lisp/obsolete/options.el +++ b/lisp/obsolete/options.el @@ -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)))))) |