# HG changeset patch # User Richard M. Stallman # Date 1167862648 0 # Node ID 9244abd6f93b28ad75f3315847f4009e41669c49 # Parent 483807cc58bdb11029cc5cc0d3f4e07d64d7c5af (Variable Definitions, Customization Types): Don't use * in doc string for defcustom. diff -r 483807cc58bd -r 9244abd6f93b lispref/customize.texi --- a/lispref/customize.texi Wed Jan 03 20:48:19 2007 +0000 +++ b/lispref/customize.texi Wed Jan 03 22:17:28 2007 +0000 @@ -409,7 +409,7 @@ @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 (defcustom diff-command "diff" - "*The command to use to run diff." + "The command to use to run diff." :type '(string) :group 'diff) @end example