]> git.eshelyaron.com Git - emacs.git/commitdiff
(subregexp-context-p): Fix garbled doc string by adding
authorDavid Kastrup <dak@gnu.org>
Sat, 19 Feb 2005 18:54:17 +0000 (18:54 +0000)
committerDavid Kastrup <dak@gnu.org>
Sat, 19 Feb 2005 18:54:17 +0000 (18:54 +0000)
quoting.

lisp/ChangeLog
lisp/subr.el

index b4dc87bb39a9a9408a0ea8c6b474efe6e39d11d1..fe1947e1247c0f1eae1fe693e1db8866131d6e9c 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-19  David Kastrup  <dak@gnu.org>
+
+       * subr.el (subregexp-context-p): Fix garbled doc string by adding
+       quoting.
+
 2005-02-19  Jay Belanger  <belanger@truman.edu>
 
        * calc/calc-math.el (calc-arctan, calc-tanh, calc-arctanh):
index 3d1a7203dd01b61832b11b52a29e74141b4a77d5..252154c7b0f3f39ee56fc04166e148347f0b4666 100644 (file)
@@ -2221,10 +2221,10 @@ and replace a sub-expression, e.g.
 (defun subregexp-context-p (regexp pos &optional start)
   "Return non-nil if POS is in a normal subregexp context in REGEXP.
 A subregexp context is one where a sub-regexp can appear.
-A non-subregexp context is for example within brackets, or within a repetition
-bounds operator \\{..\\}, or right after a \\.
-If START is non-nil, it should be a position in REGEXP, smaller than POS,
-and known to be in a subregexp context."
+A non-subregexp context is for example within brackets, or within a
+repetition bounds operator `\\=\\{...\\}', or right after a `\\'.
+If START is non-nil, it should be a position in REGEXP, smaller
+than POS, and known to be in a subregexp context."
   ;; Here's one possible implementation, with the great benefit that it
   ;; reuses the regexp-matcher's own parser, so it understands all the
   ;; details of the syntax.  A disadvantage is that it needs to match the