changeset 49153:3db6e402ea2c

(sgml-font-lock-keywords-2): Add flag to merge with existing fontification.
author Andreas Schwab <schwab@suse.de>
date Sat, 11 Jan 2003 22:47:33 +0000
parents 0772673f9a65
children 214790087d8f
files lisp/textmodes/sgml-mode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el	Sat Jan 11 20:21:46 2003 +0000
+++ b/lisp/textmodes/sgml-mode.el	Sat Jan 11 22:47:33 2003 +0000
@@ -1,6 +1,6 @@
 ;;; sgml-mode.el --- SGML- and HTML-editing modes
 
-;; Copyright (C) 1992,95,96,98,2001,2002  Free Software Foundation, Inc.
+;; Copyright (C) 1992,95,96,98,2001,2002, 2003  Free Software Foundation, Inc.
 
 ;; Author: James Clark <jjc@jclark.com>
 ;; Maintainer: FSF
@@ -263,7 +263,7 @@
 		      (regexp-opt (mapcar 'car sgml-tag-face-alist) t)
 		      "\\([ \t][^>]*\\)?>\\([^<]+\\)</\\1>")
 	      '(3 (cdr (assoc (downcase (match-string 1))
-			      sgml-tag-face-alist))))))))
+			      sgml-tag-face-alist)) prepend))))))
 
 ;; for font-lock, but must be defvar'ed after
 ;; sgml-font-lock-keywords-1 and sgml-font-lock-keywords-2 above