diff options
| author | Xue Fuqiao | 2015-08-30 20:50:36 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2015-08-30 20:50:36 +0800 |
| commit | f665b49fa3efa08a3a2d249b6a227bcb5d0d5e82 (patch) | |
| tree | 7245fe4da1354377e496593efd77627aa2498579 | |
| parent | d987e6d6712540677aac32d0e85519eaed50c596 (diff) | |
| download | emacs-f665b49fa3efa08a3a2d249b6a227bcb5d0d5e82.tar.gz emacs-f665b49fa3efa08a3a2d249b6a227bcb5d0d5e82.zip | |
Minor documentation and NEWS tweak
* doc/lispintro/emacs-lisp-intro.texi (fwd-para let): Add an index
entry.
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 3 | ||||
| -rw-r--r-- | etc/NEWS | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 4406958daa0..f1480a44b3d 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -4938,6 +4938,8 @@ result of this, point is placed at the beginning of the buffer and mark | |||
| 4938 | is set at the end of the buffer. The whole buffer is, therefore, the | 4938 | is set at the end of the buffer. The whole buffer is, therefore, the |
| 4939 | region. | 4939 | region. |
| 4940 | 4940 | ||
| 4941 | @c FIXME: the definition of append-to-buffer has been changed (in | ||
| 4942 | @c 2010-03-30). | ||
| 4941 | @node append-to-buffer | 4943 | @node append-to-buffer |
| 4942 | @section The Definition of @code{append-to-buffer} | 4944 | @section The Definition of @code{append-to-buffer} |
| 4943 | @findex append-to-buffer | 4945 | @findex append-to-buffer |
| @@ -12920,6 +12922,7 @@ The next line of the @code{forward-paragraph} function begins a | |||
| 12920 | @code{let*} expression. This is a different than @code{let}. The | 12922 | @code{let*} expression. This is a different than @code{let}. The |
| 12921 | symbol is @code{let*} not @code{let}. | 12923 | symbol is @code{let*} not @code{let}. |
| 12922 | 12924 | ||
| 12925 | @findex let* | ||
| 12923 | The @code{let*} special form is like @code{let} except that Emacs sets | 12926 | The @code{let*} special form is like @code{let} except that Emacs sets |
| 12924 | each variable in sequence, one after another, and variables in the | 12927 | each variable in sequence, one after another, and variables in the |
| 12925 | latter part of the varlist can make use of the values to which Emacs | 12928 | latter part of the varlist can make use of the values to which Emacs |
| @@ -116,8 +116,8 @@ For instance, the " will match all variants of unicode double quotes | |||
| 116 | cousins, even those composed of multiple characters, as well as many | 116 | cousins, even those composed of multiple characters, as well as many |
| 117 | other symbols like ℀, ℁, ⒜, and ⓐ. | 117 | other symbols like ℀, ℁, ⒜, and ⓐ. |
| 118 | 118 | ||
| 119 | ** New function `character-folded-regexp' can be used | 119 | ** New function `character-fold-to-regexp' can be used |
| 120 | by searching commands to produce a a regexp matching anything that | 120 | by searching commands to produce a regexp matching anything that |
| 121 | character-folds into STRING. | 121 | character-folds into STRING. |
| 122 | 122 | ||
| 123 | ** New command `checkdoc-package-keywords' checks if the | 123 | ** New command `checkdoc-package-keywords' checks if the |