mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-03 22:20:52 -08:00
(derived-mode-merge-syntax-tables): Use inheritance.
This commit is contained in:
parent
fa66096961
commit
5dee7dae09
1 changed files with 1 additions and 5 deletions
|
|
@ -331,11 +331,7 @@ be automatic inheritance."
|
|||
(defun derived-mode-merge-syntax-tables (old new)
|
||||
"Merge an old syntax table into a new one.
|
||||
Where the new table already has an entry, nothing is copied from the old one."
|
||||
(map-char-table
|
||||
(function (lambda (key value)
|
||||
(or (char-table-range new key)
|
||||
(set-char-table-range new key value))))
|
||||
old))
|
||||
(set-char-table-parent new old))
|
||||
|
||||
;; Merge an old abbrev table into a new one.
|
||||
;; This function requires internal knowledge of how abbrev tables work,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue