diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-01-03 22:17:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-01-03 22:17:32 +0000 |
commit | cd35741ddc7e72a786fba0d19c765ddab8d879b6 (patch) | |
tree | 2b96e9947005d470bd31cd08966ebdbf83e910a5 /lispref/customize.texi | |
parent | f47190c89ba9ad9b4739373d8f80ed09c63b9984 (diff) | |
download | emacs-cd35741ddc7e72a786fba0d19c765ddab8d879b6.tar.gz |
(Variable Definitions, Customization Types):
Don't use * in doc string for defcustom.
Diffstat (limited to 'lispref/customize.texi')
-rw-r--r-- | lispref/customize.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/customize.texi b/lispref/customize.texi index ee188c76c79..621124acb97 100644 --- a/lispref/customize.texi +++ b/lispref/customize.texi @@ -409,7 +409,7 @@ Keywords}. Here is an example, from the library @file{saveplace.el}: @example (defcustom save-place nil - "*Non-nil means automatically save place in each file..." + "Non-nil means automatically save place in each file..." :type 'boolean :require 'saveplace :group 'save-place) @@ -461,7 +461,7 @@ example: @example (defcustom diff-command "diff" - "*The command to use to run diff." + "The command to use to run diff." :type '(string) :group 'diff) @end example |