]> git.eshelyaron.com Git - emacs.git/commitdiff
Keep nxml-prolog-end up to date (Bug#18871)
authorNoam Postavsky <npostavs@gmail.com>
Sat, 18 May 2019 18:54:36 +0000 (14:54 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Tue, 4 Jun 2019 12:42:50 +0000 (08:42 -0400)
The change on 2016-01-16 "lisp/nxml: Use syntax-tables for comments"
removed the update of nxml-prolog-end, although it already failed to
work correctly after 2013-10-07 "* lisp/nxml/nxml-mode.el: Use
lexical-binding and syntax-propertize."
* lisp/nxml/nxml-rap.el: New function.
* lisp/nxml/nxml-mode.el (nxml-mode): Add it to
after-change-functions.

lisp/nxml/nxml-mode.el
lisp/nxml/nxml-rap.el

index 1eb728f23a5080b2de0c16da1a85f3e0ae482838..5c906a9d5109fae3f25a9882d0cf89bdad30e68a 100644 (file)
@@ -544,6 +544,7 @@ Many aspects this mode can be customized using
   (setq-local syntax-ppss-table sgml-tag-syntax-table)
   (setq-local syntax-propertize-function #'nxml-syntax-propertize)
   (add-hook 'change-major-mode-hook #'nxml-cleanup nil t)
+  (add-hook 'after-change-functions #'nxml-maybe-rescan-prolog nil t)
 
   ;; Emacs 23 handles the encoding attribute on the xml declaration
   ;; transparently to nxml-mode, so there is no longer a need for the below
index 21dbaded25a46bf75317594f8d68b10e05f047bf..3be413ae00b1d67fdec219baeb66bed92171fc50 100644 (file)
@@ -108,6 +108,12 @@ Return nil if the character at POS is not inside."
     (setq nxml-prolog-regions (xmltok-forward-prolog))
     (setq nxml-prolog-end (point))))
 
+(defun nxml-maybe-rescan-prolog (start _end _length)
+  "Reparse the prolog if START lies within it.
+`nxml-mode' adds this function on `after-change-functions'."
+  (when (<= start nxml-prolog-end)
+    (save-excursion
+      (nxml-scan-prolog))))
 
 ;;; Random access parsing