aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-01-03 22:17:32 +0000
committerRichard M. Stallman2007-01-03 22:17:32 +0000
commitcd35741ddc7e72a786fba0d19c765ddab8d879b6 (patch)
tree2b96e9947005d470bd31cd08966ebdbf83e910a5
parentf47190c89ba9ad9b4739373d8f80ed09c63b9984 (diff)
downloademacs-cd35741ddc7e72a786fba0d19c765ddab8d879b6.tar.gz
emacs-cd35741ddc7e72a786fba0d19c765ddab8d879b6.zip
(Variable Definitions, Customization Types):
Don't use * in doc string for defcustom.
-rw-r--r--lispref/ChangeLog5
-rw-r--r--lispref/customize.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index a555c30b20e..bbb42a5ba05 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,8 @@
12007-01-03 Richard Stallman <rms@gnu.org>
2
3 * customize.texi (Variable Definitions, Customization Types):
4 Don't use * in doc string for defcustom.
5
12007-01-02 Richard Stallman <rms@gnu.org> 62007-01-02 Richard Stallman <rms@gnu.org>
2 7
3 * variables.texi (Variable Aliases): Clarify that aliases vars 8 * variables.texi (Variable Aliases): Clarify that aliases vars
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}:
409 409
410@example 410@example
411(defcustom save-place nil 411(defcustom save-place nil
412 "*Non-nil means automatically save place in each file..." 412 "Non-nil means automatically save place in each file..."
413 :type 'boolean 413 :type 'boolean
414 :require 'saveplace 414 :require 'saveplace
415 :group 'save-place) 415 :group 'save-place)
@@ -461,7 +461,7 @@ example:
461 461
462@example 462@example
463(defcustom diff-command "diff" 463(defcustom diff-command "diff"
464 "*The command to use to run diff." 464 "The command to use to run diff."
465 :type '(string) 465 :type '(string)
466 :group 'diff) 466 :group 'diff)
467@end example 467@end example