diff options
author | Miles Bader <miles@gnu.org> | 2006-06-17 20:57:37 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-06-17 20:57:37 +0000 |
commit | 10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217 (patch) | |
tree | 78d2db4ab91026e7d5373086d022a2bce083200b /lisp/obsolete | |
parent | 2090e2a3897bd0e36fd0e8ba13d861668a0a887f (diff) | |
parent | f362b76002bfd0f43af76a7772a808c042302f07 (diff) | |
download | emacs-10c1758c0b2d29b3e1fb8e3ffe5c5dc262f25217.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 300-313)
- Update from CVS
- Update from CVS: lispref/display.texi (Forcing Redisplay): Fix typo.
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 105-106)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-74
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)))))) |