]> code.delx.au - gnu-emacs/blobdiff - lisp/options.el
(comment-indent): Be more careful when inserting
[gnu-emacs] / lisp / options.el
index de27ac60c3edd963dbaa251ae5d91718ff8dc096..53a67516b2f41302190f8bd0fe4a6f9e76990ba4 100644 (file)
@@ -1,4 +1,4 @@
-;;; options.el --- edit Options command for Emacs.
+;;; options.el --- edit Options command for Emacs
 
 ;; Copyright (C) 1985 Free Software Foundation, Inc.
 
@@ -35,7 +35,8 @@
 
 ;;;###autoload
 (defun list-options ()
-  "Display a list of Emacs user options, with values and documentation."
+  "Display a list of Emacs user options, with values and documentation.
+It is now better to use Customize instead."
   (interactive)
   (with-output-to-temp-buffer "*List Options*"
     (let (vars)
@@ -51,7 +52,7 @@
            (princ ":\n\t")
            (prin1 (symbol-value sym))
            (terpri)
-           (princ (substitute-command-keys 
+           (princ (substitute-command-keys
                    (documentation-property sym 'variable-documentation)))
            (princ "\n;;\n"))
          (setq vars (cdr vars))))