aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/textmodes/sgml-mode.el3
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b696ad971a0..23aeac84ca5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,4 +1,9 @@
12008-09-19 Miles Bader <Miles Bader <miles@gnu.org>> 12008-09-19 Martin Rudalics <rudalics@gmx.at>
2
3 * textmodes/sgml-mode.el (sgml-tag-syntax-table): Remove prefix
4 flag from "'" entry in sgml-tag-syntax-table. (Bug#946)
5
62008-09-19 Miles Bader <miles@gnu.org>
2 7
3 * comint.el (comint-output-filter): Make field properties for 8 * comint.el (comint-output-filter): Make field properties for
4 output text front-sticky. 9 output text front-sticky.
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index 67ed335a9c0..9310e760907 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -158,6 +158,9 @@ This takes effect when first loading the `sgml-mode' library.")
158 (let ((table (sgml-make-syntax-table sgml-specials))) 158 (let ((table (sgml-make-syntax-table sgml-specials)))
159 (dolist (char '(?\( ?\) ?\{ ?\} ?\[ ?\] ?$ ?% ?& ?* ?+ ?/)) 159 (dolist (char '(?\( ?\) ?\{ ?\} ?\[ ?\] ?$ ?% ?& ?* ?+ ?/))
160 (modify-syntax-entry char "." table)) 160 (modify-syntax-entry char "." table))
161 (unless (memq ?' sgml-specials)
162 ;; Avoid that skipping a tag backwards skips any "'" prefixing it.
163 (modify-syntax-entry ?' "w" table))
161 table) 164 table)
162 "Syntax table used to parse SGML tags.") 165 "Syntax table used to parse SGML tags.")
163 166