(sgml-tag-syntax-table): Remove prefix
flag from "'" entry in sgml-tag-syntax-table.
This commit is contained in:
parent
85c66abe5e
commit
c673dabeb8
2 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
|||
2008-09-19 Miles Bader <Miles Bader <miles@gnu.org>>
|
||||
2008-09-19 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* textmodes/sgml-mode.el (sgml-tag-syntax-table): Remove prefix
|
||||
flag from "'" entry in sgml-tag-syntax-table. (Bug#946)
|
||||
|
||||
2008-09-19 Miles Bader <miles@gnu.org>
|
||||
|
||||
* comint.el (comint-output-filter): Make field properties for
|
||||
output text front-sticky.
|
||||
|
|
|
@ -158,6 +158,9 @@ This takes effect when first loading the `sgml-mode' library.")
|
|||
(let ((table (sgml-make-syntax-table sgml-specials)))
|
||||
(dolist (char '(?\( ?\) ?\{ ?\} ?\[ ?\] ?$ ?% ?& ?* ?+ ?/))
|
||||
(modify-syntax-entry char "." table))
|
||||
(unless (memq ?' sgml-specials)
|
||||
;; Avoid that skipping a tag backwards skips any "'" prefixing it.
|
||||
(modify-syntax-entry ?' "w" table))
|
||||
table)
|
||||
"Syntax table used to parse SGML tags.")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue