diff options
| author | Glenn Morris | 2009-07-06 00:54:20 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-07-06 00:54:20 +0000 |
| commit | 943157cf496a7979965e9910cc7b0c0122e93e5f (patch) | |
| tree | 4a8e2e33bae34d8f2c076961b2d90a192dd2b9d7 | |
| parent | f176290e846853acc3c5d35b1d70629e3da572ad (diff) | |
| download | emacs-943157cf496a7979965e9910cc7b0c0122e93e5f.tar.gz emacs-943157cf496a7979965e9910cc7b0c0122e93e5f.zip | |
(defvar and asterisk): Minor rephrasing.
| -rw-r--r-- | doc/lispintro/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 6ad906948f5..426f74b2e1c 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-07-06 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp-intro.texi (defvar and asterisk): Minor rephrasing. | ||
| 4 | |||
| 1 | 2009-06-21 Chong Yidong <cyd@stupidchicken.com> | 5 | 2009-06-21 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * Branch for 23.1. | 7 | * Branch for 23.1. |
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 996fd3d58fe..b528150097d 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -9465,9 +9465,9 @@ the Customization commands. (@xref{defcustom, , Specifying Variables | |||
| 9465 | using @code{defcustom}}.) | 9465 | using @code{defcustom}}.) |
| 9466 | 9466 | ||
| 9467 | When you specified a variable using the @code{defvar} special form, | 9467 | When you specified a variable using the @code{defvar} special form, |
| 9468 | you could distinguish a readily settable variable from others by | 9468 | you could distinguish a variable that a user might want to change from |
| 9469 | typing an asterisk, @samp{*}, in the first column of its documentation | 9469 | others by typing an asterisk, @samp{*}, in the first column of its |
| 9470 | string. For example: | 9470 | documentation string. For example: |
| 9471 | 9471 | ||
| 9472 | @smallexample | 9472 | @smallexample |
| 9473 | @group | 9473 | @group |