aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorMartin Rudalics2008-09-19 06:20:30 +0000
committerMartin Rudalics2008-09-19 06:20:30 +0000
commitc673dabeb83a170b38f9e1aa6d5d597da5d0d58e (patch)
tree29227fe0a640411460f9fa5b42a797fd3f0056d7 /lisp/textmodes
parent85c66abe5e24a578ca09895592fd79d61aee47b0 (diff)
downloademacs-c673dabeb83a170b38f9e1aa6d5d597da5d0d58e.tar.gz
emacs-c673dabeb83a170b38f9e1aa6d5d597da5d0d58e.zip
(sgml-tag-syntax-table): Remove prefix
flag from "'" entry in sgml-tag-syntax-table.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/sgml-mode.el3
1 files changed, 3 insertions, 0 deletions
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