From: Richard M. Stallman Date: Fri, 16 Jun 2006 15:15:30 +0000 (+0000) Subject: (list-options): Put "obsolete" msg in buffer. X-Git-Tag: emacs-pretest-22.0.90~1935 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ac2c512030ddd83b1bb8d9dbf05caabe5bf52f14;p=emacs.git (list-options): Put "obsolete" msg in buffer. --- 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))))))