]> git.eshelyaron.com Git - emacs.git/commitdiff
Extend mhtml submode region when in comment
authorTom Tromey <tom@tromey.com>
Sun, 29 Oct 2017 19:03:51 +0000 (13:03 -0600)
committerTom Tromey <tom@tromey.com>
Sun, 29 Oct 2017 19:03:51 +0000 (13:03 -0600)
* lisp/textmodes/mhtml-mode.el (mhtml-syntax-propertize): Extend
submode when start happens to be in a comment.

lisp/textmodes/mhtml-mode.el

index 2c1b26d571ce82301846e6f0fbc557c9630cb030..58541677509b0e4caf636f8f03f7216dd2cd23c6 100644 (file)
@@ -293,9 +293,7 @@ can function properly.")
   (unless (bobp)
     (let ((submode (get-text-property (1- (point)) 'mhtml-submode)))
       (if submode
-          ;; Don't search in a comment or string
-          (unless (syntax-ppss-context (syntax-ppss))
-            (mhtml--syntax-propertize-submode submode end))
+          (mhtml--syntax-propertize-submode submode end)
         ;; No submode, so do what sgml-mode does.
         (sgml-syntax-propertize-inside end))))
   (funcall