+2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * textmodes/sgml-mode.el (sgml-font-lock-syntactic-keywords):
+ Mark " outside of tags as punctuation.
+
2008-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
* menu-bar.el (minibuffer-local-map): Use the same command for the
;; comments recognized when `sgml-specials' includes ?-.
;; FIXME: beware of <!--> blabla <!--> !!
'(("\\(<\\)!--" (1 "< b"))
- ("--[ \t\n]*\\(>\\)" (1 "> b")))
+ ("--[ \t\n]*\\(>\\)" (1 "> b"))
+ ;; Double quotes outside of tags should not introduce strings.
+ ("\\\"" (0 (if (zerop (car (syntax-ppss))) "."))))
"Syntactic keywords for `sgml-mode'.")
;; internal