aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/nxml
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/nxml')
-rw-r--r--lisp/nxml/nxml-rap.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/nxml/nxml-rap.el b/lisp/nxml/nxml-rap.el
index e6857a9fafe..5689b12c41e 100644
--- a/lisp/nxml/nxml-rap.el
+++ b/lisp/nxml/nxml-rap.el
@@ -128,7 +128,7 @@ Return nil if the character at POS is not inside."
128The change happened between START and END. 128The change happened between START and END.
129Return position after which lexical state is unchanged. 129Return position after which lexical state is unchanged.
130END must be > `nxml-prolog-end'. START must be outside 130END must be > `nxml-prolog-end'. START must be outside
131any 'inside' regions and at the beginning of a token." 131any inside regions and at the beginning of a token."
132 (if (>= start nxml-scan-end) 132 (if (>= start nxml-scan-end)
133 nxml-scan-end 133 nxml-scan-end
134 (let ((inside-remove-start start) 134 (let ((inside-remove-start start)
@@ -234,10 +234,10 @@ Sets variables like `nxml-token-after'."
234 xmltok-type)) 234 xmltok-type))
235 235
236(defun nxml-move-tag-backwards (bound) 236(defun nxml-move-tag-backwards (bound)
237 "Move point backwards outside any 'inside' regions or tags. 237 "Move point backwards outside any inside regions or tags.
238Point will not move past `nxml-prolog-end'. 238Point will not move past `nxml-prolog-end'.
239Point will either be at BOUND or a '<' character starting a tag 239Point will either be at BOUND or a `<' character starting a tag
240outside any 'inside' regions. 240outside any inside regions.
241As a precondition, point must be >= BOUND." 241As a precondition, point must be >= BOUND."
242 (nxml-move-outside-backwards) 242 (nxml-move-outside-backwards)
243 (when (not (equal (char-after) ?<)) 243 (when (not (equal (char-after) ?<))