diff options
| author | Andreas Schwab | 2007-04-27 15:17:28 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2007-04-27 15:17:28 +0000 |
| commit | 92fbf041e169f72062d60d706671f7a29fdd444c (patch) | |
| tree | 8bb02a7e3a31500504812e83a2cdfb7cc4393498 | |
| parent | c97adfa56be0df5daab0aa844acc76f9423dbfd5 (diff) | |
| download | emacs-92fbf041e169f72062d60d706671f7a29fdd444c.tar.gz emacs-92fbf041e169f72062d60d706671f7a29fdd444c.zip | |
(sregexq): Fix doc string quoting.
| -rw-r--r-- | lisp/emacs-lisp/sregex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/sregex.el b/lisp/emacs-lisp/sregex.el index 8041aefc077..67824c40632 100644 --- a/lisp/emacs-lisp/sregex.el +++ b/lisp/emacs-lisp/sregex.el | |||
| @@ -436,11 +436,11 @@ Here are the clauses allowed in an `sregex' or `sregexq' expression: | |||
| 436 | or end of a word. | 436 | or end of a word. |
| 437 | 437 | ||
| 438 | - the symbol `bow' | 438 | - the symbol `bow' |
| 439 | Stands for \"\\\\\\=<\", matching the empty string at the beginning of a | 439 | Stands for \"\\\\=\\<\", matching the empty string at the beginning of a |
| 440 | word. | 440 | word. |
| 441 | 441 | ||
| 442 | - the symbol `eow' | 442 | - the symbol `eow' |
| 443 | Stands for \"\\\\\\=>\", matching the empty string at the end of a word. | 443 | Stands for \"\\\\=\\>\", matching the empty string at the end of a word. |
| 444 | 444 | ||
| 445 | - the symbol `wordchar' | 445 | - the symbol `wordchar' |
| 446 | Stands for the regex \"\\\\w\", matching a word-constituent character | 446 | Stands for the regex \"\\\\w\", matching a word-constituent character |