Emacs 21 の sgml-mode.el などの html-mode に対してScriptlet (JSP) 対応なんかやってみた。近いうちに #{mes}(#{link}) あたりに置いてみる。 --- lisp/files.el.scriptlet Sun Mar 24 08:41:33 2002 +++ lisp/files.el Sun Mar 31 07:22:51 2002 @@ -1355,6 +1355,7 @@ ("\.ad[abs]\'" . ada-mode) ("\.\([pP]\([Llm]\|erl\)\|al\)\'" . perl-mode) ("\.s?html?\'" . html-mode) + ("\.jsp\'" . html-mode) ("\.cc\'" . c++-mode) ("\.hh\'" . c++-mode) ("\.hpp\'" . c++-mode) --- lisp/textmodes/sgml-mode.el.scriptlet Sun Mar 31 07:20:18 2002 +++ lisp/textmodes/sgml-mode.el Sun Mar 31 07:18:28 2002 @@ -65,7 +65,6 @@ ?\" Makes " in text start a string. ?' Makes ' in text start a string. ?- Makes -- in text start a comment. - ?- Makes % in text start a scriptlet (JSP). When only one of ?\" or ?' are included, "'" or '"', as can be found in DTDs, start a string. To partially avoid this problem this ...