summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2007-06-04 23:51:01 +0000
committerChong Yidong <cyd@stupidchicken.com>2007-06-04 23:51:01 +0000
commit67e2f487255c8d8cb274548a5613524ddad75836 (patch)
tree9149ff0c97a0d88e8623be90a599f21a5f09b30e
parent7e285b363fa39b4ec1bd649429a178384542d428 (diff)
downloademacs-67e2f487255c8d8cb274548a5613524ddad75836.tar.gz
(sregexq): Fix doc string quoting.
-rw-r--r--lisp/emacs-lisp/sregex.el4
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:
or end of a word.
- the symbol `bow'
- Stands for \"\\\\\\=<\", matching the empty string at the beginning of a
+ Stands for \"\\\\=\\<\", matching the empty string at the beginning of a
word.
- the symbol `eow'
- Stands for \"\\\\\\=>\", matching the empty string at the end of a word.
+ Stands for \"\\\\=\\>\", matching the empty string at the end of a word.
- the symbol `wordchar'
Stands for the regex \"\\\\w\", matching a word-constituent character