]> git.eshelyaron.com Git - emacs.git/commitdiff
Properly quote nested xml comments (Bug#6267) (Bug#20001)
authorIvan Andrus <darthandrus@gmail.com>
Tue, 8 Sep 2015 22:38:13 +0000 (16:38 -0600)
committerIvan Andrus <darthandrus@gmail.com>
Wed, 23 Sep 2015 23:48:42 +0000 (17:48 -0600)
* nxml-mode.el (nxml-comment-quote-nested): New function
(nxml-mode): Set comment-quote-nested-function

lisp/nxml/nxml-mode.el

index 6c5c85b2fcc879d1ece8b96a72502db962926ef9..dc151a3c65088f748270b09c35b54a434687e844 100644 (file)
@@ -546,6 +546,8 @@ Many aspects this mode can be customized using
   (setq comment-end-skip "[ \t\r\n]*-->")
   (make-local-variable 'comment-line-break-function)
   (setq comment-line-break-function 'nxml-newline-and-indent)
+  (make-local-variable 'comment-quote-nested-function)
+  (setq comment-quote-nested-function 'nxml-comment-quote-nested)
   (use-local-map nxml-mode-map)
   (save-excursion
     (save-restriction
@@ -1350,6 +1352,18 @@ of the inserted start-tag or nil if none was inserted."
                            start-tag-indent)))))
     inserted-start-tag-pos))
 
+(defun nxml-comment-quote-nested (cs ce unp)
+  "Quote nested comments in buffer.
+See `comment-quote-nested-function' for more information.")
+  (goto-char (point-min))
+  (save-match-data
+    (while (re-search-forward "-[\\]*-" nil t)
+      (goto-char (match-beginning 0))
+      (forward-char 1)
+      (if unp
+         (delete-char 1)
+       (insert "\\")))))
+
 ;;; Indentation
 
 (defun nxml-indent-line ()