Don't use * in doc string for defcustom.
+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
@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)
@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