diff options
Diffstat (limited to 'lisp/nxml')
| -rw-r--r-- | lisp/nxml/nxml-rap.el | 8 |
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." | |||
| 128 | The change happened between START and END. | 128 | The change happened between START and END. |
| 129 | Return position after which lexical state is unchanged. | 129 | Return position after which lexical state is unchanged. |
| 130 | END must be > `nxml-prolog-end'. START must be outside | 130 | END must be > `nxml-prolog-end'. START must be outside |
| 131 | any 'inside' regions and at the beginning of a token." | 131 | any “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. |
| 238 | Point will not move past `nxml-prolog-end'. | 238 | Point will not move past `nxml-prolog-end'. |
| 239 | Point will either be at BOUND or a '<' character starting a tag | 239 | Point will either be at BOUND or a `<' character starting a tag |
| 240 | outside any 'inside' regions. | 240 | outside any “inside” regions. |
| 241 | As a precondition, point must be >= BOUND." | 241 | As 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) ?<)) |