diff options
| author | Chong Yidong | 2012-02-25 12:03:43 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-02-25 12:03:43 +0800 |
| commit | 4963495d7e56e6f1aeca22ce028a4ce8eb010076 (patch) | |
| tree | a022f97af2b6f21d9932e781eb15bf052c9ffb8a | |
| parent | 562af8bb4f1f1f4962cf3543290c61c2cc554978 (diff) | |
| download | emacs-4963495d7e56e6f1aeca22ce028a4ce8eb010076.tar.gz emacs-4963495d7e56e6f1aeca22ce028a4ce8eb010076.zip | |
* doc/lispref/searching.texi (Regexp Backslash): Add index entry.
Fixes: debbugs:10869
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/objects.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 575902336cd..089aa8ba096 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-02-25 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Backslash): Add index entry (Bug#10869). | ||
| 4 | |||
| 1 | 2012-02-24 Glenn Morris <rgm@gnu.org> | 5 | 2012-02-24 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * errors.texi (Standard Errors): Mention dbus-error. | 7 | * errors.texi (Standard Errors): Mention dbus-error. |
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index 995a4d89352..ba4803c73f2 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi | |||
| @@ -370,7 +370,7 @@ with other programming languages. Unlike some other languages, Emacs | |||
| 370 | Lisp supports this syntax only in character literals and strings. | 370 | Lisp supports this syntax only in character literals and strings. |
| 371 | 371 | ||
| 372 | @cindex @samp{\} in character constant | 372 | @cindex @samp{\} in character constant |
| 373 | @cindex backslash in character constant | 373 | @cindex backslash in character constants |
| 374 | @cindex octal character code | 374 | @cindex octal character code |
| 375 | The most general read syntax for a character represents the | 375 | The most general read syntax for a character represents the |
| 376 | character code in either octal or hex. To use octal, write a question | 376 | character code in either octal or hex. To use octal, write a question |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 3dc777897c1..5bda1940b51 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -559,6 +559,7 @@ through @samp{f} and @samp{A} through @samp{F}. | |||
| 559 | 559 | ||
| 560 | @node Regexp Backslash | 560 | @node Regexp Backslash |
| 561 | @subsubsection Backslash Constructs in Regular Expressions | 561 | @subsubsection Backslash Constructs in Regular Expressions |
| 562 | @cindex backslash in regular expressions | ||
| 562 | 563 | ||
| 563 | For the most part, @samp{\} followed by any character matches only | 564 | For the most part, @samp{\} followed by any character matches only |
| 564 | that character. However, there are several exceptions: certain | 565 | that character. However, there are several exceptions: certain |