diff options
| author | Xue Fuqiao | 2013-04-21 11:27:51 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-04-21 11:27:51 +0800 |
| commit | f8152bcb327ef9a7b66974b029b617e06461ebab (patch) | |
| tree | f20b143c9768493155cb71402522f3e896f4ffe7 | |
| parent | 5d4e5c31792978649c98b82286ee631ae50a0337 (diff) | |
| download | emacs-f8152bcb327ef9a7b66974b029b617e06461ebab.tar.gz emacs-f8152bcb327ef9a7b66974b029b617e06461ebab.zip | |
searching.texi (Regexp Backslash): Doc fix for backslash constructs in regular expressions.
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/searching.texi | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 31e4f791350..36c8b8dbea7 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-04-21 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * searching.texi (Regexp Backslash): Doc fix for backslash | ||
| 4 | constructs in regular expressions. | ||
| 5 | |||
| 1 | 2013-04-15 Christopher Schmidt <christopher@ch.ristopher.com> | 6 | 2013-04-15 Christopher Schmidt <christopher@ch.ristopher.com> |
| 2 | 7 | ||
| 3 | * tips.texi (Coding Conventions): Mention separation of package | 8 | * tips.texi (Coding Conventions): Mention separation of package |
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 87d4051d6f0..386d5bdde4c 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -589,10 +589,8 @@ through @samp{f} and @samp{A} through @samp{F}. | |||
| 589 | 589 | ||
| 590 | For the most part, @samp{\} followed by any character matches only | 590 | For the most part, @samp{\} followed by any character matches only |
| 591 | that character. However, there are several exceptions: certain | 591 | that character. However, there are several exceptions: certain |
| 592 | two-character sequences starting with @samp{\} that have special | 592 | sequences starting with @samp{\} that have special meanings. Here is |
| 593 | meanings. (The character after the @samp{\} in such a sequence is | 593 | a table of the special @samp{\} constructs. |
| 594 | always ordinary when used on its own.) Here is a table of the special | ||
| 595 | @samp{\} constructs. | ||
| 596 | 594 | ||
| 597 | @table @samp | 595 | @table @samp |
| 598 | @item \| | 596 | @item \| |