]> git.eshelyaron.com Git - emacs.git/commitdiff
(Variable Definitions, Customization Types):
authorRichard M. Stallman <rms@gnu.org>
Wed, 3 Jan 2007 22:17:32 +0000 (22:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 3 Jan 2007 22:17:32 +0000 (22:17 +0000)
Don't use * in doc string for defcustom.

lispref/ChangeLog
lispref/customize.texi

index a555c30b20e6b5c1daee18f38c2b43bdf832de3f..bbb42a5ba055c68467ec4535b70bc425f299e4bb 100644 (file)
@@ -1,3 +1,8 @@
+2007-01-03  Richard Stallman  <rms@gnu.org>
+
+       * customize.texi (Variable Definitions, Customization Types): 
+       Don't use * in doc string for defcustom.
+
 2007-01-02  Richard Stallman  <rms@gnu.org>
 
        * variables.texi (Variable Aliases): Clarify that aliases vars
index ee188c76c7924f7270acb7716108147cd26e34db..621124acb97898a9cc7b6384af4c815ce3fd497b 100644 (file)
@@ -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