diff options
| author | Eli Zaretskii | 2025-05-10 07:40:30 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2025-05-10 07:40:30 -0400 |
| commit | 1410bfb7ca5a3497fbbf36a9d31f9a1dce8fd63a (patch) | |
| tree | 37bfcee9885bb0b54294235080d4d2e576981ec9 /lisp/nxml | |
| parent | 7265be09cebc9ee752b688b7a85fb1ac18b45ef5 (diff) | |
| parent | 0d493864cee2ea1d7661d51b973db58667b6b65b (diff) | |
| download | emacs-1410bfb7ca5a3497fbbf36a9d31f9a1dce8fd63a.tar.gz emacs-1410bfb7ca5a3497fbbf36a9d31f9a1dce8fd63a.zip | |
Merge from origin/emacs-30
0d493864cee Fix indentation of XML comments
1a2c29b5317 Improve Tramp's make-process handling for Solaris
a7dffc2ea38 Document 'time-stamp-time-zone' in Emacs Manual
0b4eb525b69 Make treesit--simple-indent-eval more permissive (bug#78065)
ed7b55f6bf1 Adapt Tramp tests
b172a1478c1 ; * doc/lispref/tips.texi (Library Headers): Fix wording ...
81629b2b2ba ; * lisp/gnus/mail-source.el (mail-sources): Fix a typo (...
Diffstat (limited to 'lisp/nxml')
| -rw-r--r-- | lisp/nxml/nxml-mode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el index 1f2c7e81a09..ae27824fdc9 100644 --- a/lisp/nxml/nxml-mode.el +++ b/lisp/nxml/nxml-mode.el | |||
| @@ -1523,6 +1523,8 @@ of the line. This expects the xmltok-* variables to be set up as by | |||
| 1523 | ((progn | 1523 | ((progn |
| 1524 | (goto-char pos) | 1524 | (goto-char pos) |
| 1525 | (forward-line -1) | 1525 | (forward-line -1) |
| 1526 | (while (looking-at "^[[:blank:]]*$") | ||
| 1527 | (forward-line -1)) | ||
| 1526 | (<= (point) xmltok-start)) | 1528 | (<= (point) xmltok-start)) |
| 1527 | (goto-char (+ xmltok-start (length open-delim))) | 1529 | (goto-char (+ xmltok-start (length open-delim))) |
| 1528 | (when (and (string= open-delim "<!--") | 1530 | (when (and (string= open-delim "<!--") |