Mercurial > emacs
annotate lisp/emacs-lisp/derived.el @ 97774:cf6404e22e31
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 27 Aug 2008 20:21:31 +0000 |
parents | 9db96e091168 |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
51349 | 1 ;;; derived.el --- allow inheritance of major modes |
63345 | 2 ;; (formerly mode-clone.el) |
51349 | 3 |
74466 | 4 ;; Copyright (C) 1993, 1994, 1999, 2001, 2002, 2003, 2004, |
79704 | 5 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
51349 | 6 |
7 ;; Author: David Megginson (dmeggins@aix1.uottawa.ca) | |
8 ;; Maintainer: FSF | |
9 ;; Keywords: extensions | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
51349 | 14 ;; it under the terms of the GNU General Public License as published by |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
16 ;; (at your option) any later version. |
51349 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94655
90a2847062be
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
51349 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; GNU Emacs is already, in a sense, object oriented -- each object | |
29 ;; (buffer) belongs to a class (major mode), and that class defines | |
30 ;; the relationship between messages (input events) and methods | |
31 ;; (commands) by means of a keymap. | |
32 ;; | |
33 ;; The only thing missing is a good scheme of inheritance. It is | |
34 ;; possible to simulate a single level of inheritance with generous | |
35 ;; use of hooks and a bit of work -- sgml-mode, for example, also runs | |
36 ;; the hooks for text-mode, and keymaps can inherit from other keymaps | |
37 ;; -- but generally, each major mode ends up reinventing the wheel. | |
38 ;; Ideally, someone should redesign all of Emacs's major modes to | |
39 ;; follow a more conventional object-oriented system: when defining a | |
40 ;; new major mode, the user should need only to name the existing mode | |
41 ;; it is most similar to, then list the (few) differences. | |
42 ;; | |
43 ;; In the mean time, this package offers most of the advantages of | |
44 ;; full inheritance with the existing major modes. The macro | |
45 ;; `define-derived-mode' allows the user to make a variant of an existing | |
46 ;; major mode, with its own keymap. The new mode will inherit the key | |
47 ;; bindings of its parent, and will, in fact, run its parent first | |
48 ;; every time it is called. For example, the commands | |
49 ;; | |
50 ;; (define-derived-mode hypertext-mode text-mode "Hypertext" | |
51 ;; "Major mode for hypertext.\n\n\\{hypertext-mode-map}" | |
52 ;; (setq case-fold-search nil)) | |
53 ;; | |
54 ;; (define-key hypertext-mode-map [down-mouse-3] 'do-hyper-link) | |
55 ;; | |
56 ;; will create a function `hypertext-mode' with its own (sparse) | |
57 ;; keymap `hypertext-mode-map.' The command M-x hypertext-mode will | |
58 ;; perform the following actions: | |
59 ;; | |
60 ;; - run the command (text-mode) to get its default setup | |
61 ;; - replace the current keymap with 'hypertext-mode-map,' which will | |
62 ;; inherit from 'text-mode-map'. | |
63 ;; - replace the current syntax table with | |
64 ;; 'hypertext-mode-syntax-table', which will borrow its defaults | |
65 ;; from the current text-mode-syntax-table. | |
66 ;; - replace the current abbrev table with | |
67 ;; 'hypertext-mode-abbrev-table', which will borrow its defaults | |
68 ;; from the current text-mode-abbrev table | |
69 ;; - change the mode line to read "Hypertext" | |
70 ;; - assign the value 'hypertext-mode' to the 'major-mode' variable | |
71 ;; - run the body of commands provided in the macro -- in this case, | |
72 ;; set the local variable `case-fold-search' to nil. | |
73 ;; | |
74 ;; The advantages of this system are threefold. First, text mode is | |
75 ;; untouched -- if you had added the new keystroke to `text-mode-map,' | |
76 ;; possibly using hooks, you would have added it to all text buffers | |
77 ;; -- here, it appears only in hypertext buffers, where it makes | |
78 ;; sense. Second, it is possible to build even further, and make | |
79 ;; a derived mode from a derived mode. The commands | |
80 ;; | |
81 ;; (define-derived-mode html-mode hypertext-mode "HTML") | |
82 ;; [various key definitions] | |
83 ;; | |
84 ;; will add a new major mode for HTML with very little fuss. | |
85 ;; | |
86 ;; Note also the function `derived-mode-p' which can tell if the current | |
87 ;; mode derives from another. In a hypertext-mode, buffer, for example, | |
88 ;; (derived-mode-p 'text-mode) would return non-nil. This should always | |
89 ;; be used in place of (eq major-mode 'text-mode). | |
90 | |
91 ;;; Code: | |
92 | |
93 (eval-when-compile (require 'cl)) | |
94 | |
95 ;;; PRIVATE: defsubst must be defined before they are first used | |
96 | |
97 (defsubst derived-mode-hook-name (mode) | |
64328
5562cab21b1f
(derived-mode-run-hooks): Remove.
Juanma Barranquero <lekktu@gmail.com>
parents:
64085
diff
changeset
|
98 "Construct a mode-hook name based on a MODE name." |
51349 | 99 (intern (concat (symbol-name mode) "-hook"))) |
100 | |
101 (defsubst derived-mode-map-name (mode) | |
102 "Construct a map name based on a MODE name." | |
103 (intern (concat (symbol-name mode) "-map"))) | |
104 | |
105 (defsubst derived-mode-syntax-table-name (mode) | |
106 "Construct a syntax-table name based on a MODE name." | |
107 (intern (concat (symbol-name mode) "-syntax-table"))) | |
108 | |
109 (defsubst derived-mode-abbrev-table-name (mode) | |
110 "Construct an abbrev-table name based on a MODE name." | |
111 (intern (concat (symbol-name mode) "-abbrev-table"))) | |
112 | |
113 ;; PUBLIC: define a new major mode which inherits from an existing one. | |
114 | |
115 ;;;###autoload | |
116 (defmacro define-derived-mode (child parent name &optional docstring &rest body) | |
117 "Create a new mode as a variant of an existing mode. | |
118 | |
119 The arguments to this command are as follow: | |
120 | |
121 CHILD: the name of the command for the derived mode. | |
122 PARENT: the name of the command for the parent mode (e.g. `text-mode') | |
123 or nil if there is no parent. | |
124 NAME: a string which will appear in the status line (e.g. \"Hypertext\") | |
125 DOCSTRING: an optional documentation string--if you do not supply one, | |
126 the function will attempt to invent something useful. | |
127 BODY: forms to execute just before running the | |
128 hooks for the new mode. Do not use `interactive' here. | |
129 | |
130 BODY can start with a bunch of keyword arguments. The following keyword | |
131 arguments are currently understood: | |
132 :group GROUP | |
133 Declare the customization group that corresponds to this mode. | |
62597
c51f100a7a23
(define-derived-mode): Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
62349
diff
changeset
|
134 The command `customize-mode' uses this. |
51349 | 135 :syntax-table TABLE |
136 Use TABLE instead of the default. | |
137 A nil value means to simply use the same syntax-table as the parent. | |
138 :abbrev-table TABLE | |
139 Use TABLE instead of the default. | |
140 A nil value means to simply use the same abbrev-table as the parent. | |
141 | |
142 Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: | |
143 | |
144 (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\") | |
145 | |
146 You could then make new key bindings for `LaTeX-thesis-mode-map' | |
147 without changing regular LaTeX mode. In this example, BODY is empty, | |
148 and DOCSTRING is generated by default. | |
149 | |
150 On a more complicated level, the following command uses `sgml-mode' as | |
151 the parent, and then sets the variable `case-fold-search' to nil: | |
152 | |
153 (define-derived-mode article-mode sgml-mode \"Article\" | |
154 \"Major mode for editing technical articles.\" | |
155 (setq case-fold-search nil)) | |
156 | |
157 Note that if the documentation string had been left out, it would have | |
52026
a1c58b19ec8a
(define-derived-mode): Mention hook in doc string. Defvar the derived
Glenn Morris <rgm@gnu.org>
parents:
51349
diff
changeset
|
158 been generated automatically, with a reference to the keymap. |
a1c58b19ec8a
(define-derived-mode): Mention hook in doc string. Defvar the derived
Glenn Morris <rgm@gnu.org>
parents:
51349
diff
changeset
|
159 |
a1c58b19ec8a
(define-derived-mode): Mention hook in doc string. Defvar the derived
Glenn Morris <rgm@gnu.org>
parents:
51349
diff
changeset
|
160 The new mode runs the hook constructed by the function |
62349
8d37ba4764ca
(define-derived-mode): Add link to Elisp manual to docstring.
Luc Teirlinck <teirllm@auburn.edu>
parents:
59996
diff
changeset
|
161 `derived-mode-hook-name'. |
8d37ba4764ca
(define-derived-mode): Add link to Elisp manual to docstring.
Luc Teirlinck <teirllm@auburn.edu>
parents:
59996
diff
changeset
|
162 |
8d37ba4764ca
(define-derived-mode): Add link to Elisp manual to docstring.
Luc Teirlinck <teirllm@auburn.edu>
parents:
59996
diff
changeset
|
163 See Info node `(elisp)Derived Modes' for more details." |
51349 | 164 (declare (debug (&define name symbolp sexp [&optional stringp] |
96176
9db96e091168
(define-derived-mode): Add `doc-string' declaration.
John Paul Wallington <jpw@pobox.com>
parents:
94655
diff
changeset
|
165 [&rest keywordp sexp] def-body)) |
9db96e091168
(define-derived-mode): Add `doc-string' declaration.
John Paul Wallington <jpw@pobox.com>
parents:
94655
diff
changeset
|
166 (doc-string 4)) |
51349 | 167 |
168 (when (and docstring (not (stringp docstring))) | |
169 ;; Some trickiness, since what appears to be the docstring may really be | |
170 ;; the first element of the body. | |
171 (push docstring body) | |
172 (setq docstring nil)) | |
173 | |
174 (when (eq parent 'fundamental-mode) (setq parent nil)) | |
175 | |
176 (let ((map (derived-mode-map-name child)) | |
177 (syntax (derived-mode-syntax-table-name child)) | |
178 (abbrev (derived-mode-abbrev-table-name child)) | |
179 (declare-abbrev t) | |
180 (declare-syntax t) | |
181 (hook (derived-mode-hook-name child)) | |
182 (group nil)) | |
183 | |
184 ;; Process the keyword args. | |
185 (while (keywordp (car body)) | |
186 (case (pop body) | |
187 (:group (setq group (pop body))) | |
188 (:abbrev-table (setq abbrev (pop body)) (setq declare-abbrev nil)) | |
189 (:syntax-table (setq syntax (pop body)) (setq declare-syntax nil)) | |
190 (t (pop body)))) | |
191 | |
192 (setq docstring (derived-mode-make-docstring | |
193 parent child docstring syntax abbrev)) | |
194 | |
195 `(progn | |
66872
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
196 (unless (get ',hook 'variable-documentation) |
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
197 (put ',hook 'variable-documentation |
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
198 ,(format "Hook run when entering %s mode. |
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
199 No problems result if this variable is not bound. |
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
200 `add-hook' automatically binds it. (This is true for all hook variables.)" |
4b798da1bc61
(define-derived-mode): Remove defvar for mode hook. (It conflicted
Luc Teirlinck <teirllm@auburn.edu>
parents:
64751
diff
changeset
|
201 name))) |
67292
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
202 (unless (boundp ',map) |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
203 (put ',map 'definition-name ',child)) |
51349 | 204 (defvar ,map (make-sparse-keymap)) |
205 ,(if declare-syntax | |
67292
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
206 `(progn |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
207 (unless (boundp ',syntax) |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
208 (put ',syntax 'definition-name ',child)) |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
209 (defvar ,syntax (make-syntax-table)))) |
51349 | 210 ,(if declare-abbrev |
67292
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
211 `(progn |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
212 (put ',abbrev 'definition-name ',child) |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
213 (defvar ,abbrev |
ada17aff9ef8
(define-derived-mode): Put `definition-name'
Juri Linkov <juri@jurta.org>
parents:
66872
diff
changeset
|
214 (progn (define-abbrev-table ',abbrev nil) ,abbrev)))) |
51349 | 215 (put ',child 'derived-mode-parent ',parent) |
216 ,(if group `(put ',child 'custom-mode-group ,group)) | |
217 | |
218 (defun ,child () | |
219 ,docstring | |
220 (interactive) | |
221 ; Run the parent. | |
222 (delay-mode-hooks | |
223 | |
224 (,(or parent 'kill-all-local-variables)) | |
225 ; Identify the child mode. | |
226 (setq major-mode (quote ,child)) | |
227 (setq mode-name ,name) | |
228 ; Identify special modes. | |
229 ,(when parent | |
230 `(progn | |
231 (if (get (quote ,parent) 'mode-class) | |
232 (put (quote ,child) 'mode-class | |
233 (get (quote ,parent) 'mode-class))) | |
234 ; Set up maps and tables. | |
235 (unless (keymap-parent ,map) | |
63345 | 236 ;; It would probably be better to set the keymap's parent |
237 ;; at the toplevel rather than inside the mode function, | |
238 ;; but this is not easy for at least the following reasons: | |
239 ;; - the parent (and its keymap) may not yet be loaded. | |
240 ;; - the parent's keymap name may be called something else | |
241 ;; than <parent>-mode-map. | |
51349 | 242 (set-keymap-parent ,map (current-local-map))) |
243 ,(when declare-syntax | |
244 `(let ((parent (char-table-parent ,syntax))) | |
245 (unless (and parent | |
246 (not (eq parent (standard-syntax-table)))) | |
247 (set-char-table-parent ,syntax (syntax-table))))))) | |
248 | |
249 (use-local-map ,map) | |
250 ,(when syntax `(set-syntax-table ,syntax)) | |
251 ,(when abbrev `(setq local-abbrev-table ,abbrev)) | |
252 ; Splice in the body (if any). | |
253 ,@body | |
254 ) | |
255 ;; Run the hooks, if any. | |
81080
9c88240944ad
(define-derived-mode): Remove bogus compatibiity code.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75346
diff
changeset
|
256 (run-mode-hooks ',hook))))) |
51349 | 257 |
258 ;; PUBLIC: find the ultimate class of a derived mode. | |
259 | |
260 (defun derived-mode-class (mode) | |
261 "Find the class of a major MODE. | |
262 A mode's class is the first ancestor which is NOT a derived mode. | |
263 Use the `derived-mode-parent' property of the symbol to trace backwards. | |
264 Since major-modes might all derive from `fundamental-mode', this function | |
265 is not very useful." | |
266 (while (get mode 'derived-mode-parent) | |
267 (setq mode (get mode 'derived-mode-parent))) | |
268 mode) | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
52401
diff
changeset
|
269 (make-obsolete 'derived-mode-class 'derived-mode-p "22.1") |
51349 | 270 |
271 | |
272 ;;; PRIVATE | |
273 | |
274 (defun derived-mode-make-docstring (parent child &optional | |
275 docstring syntax abbrev) | |
276 "Construct a docstring for a new mode if none is provided." | |
277 | |
278 (let ((map (derived-mode-map-name child)) | |
279 (hook (derived-mode-hook-name child))) | |
280 | |
281 (unless (stringp docstring) | |
282 ;; Use a default docstring. | |
283 (setq docstring | |
284 (if (null parent) | |
285 (format "Major-mode. | |
286 Uses keymap `%s', abbrev table `%s' and syntax-table `%s'." map abbrev syntax) | |
287 (format "Major mode derived from `%s' by `define-derived-mode'. | |
288 It inherits all of the parent's attributes, but has its own keymap, | |
289 abbrev table and syntax table: | |
290 | |
291 `%s', `%s' and `%s' | |
292 | |
293 which more-or-less shadow %s's corresponding tables." | |
294 parent map abbrev syntax parent)))) | |
295 | |
296 (unless (string-match (regexp-quote (symbol-name hook)) docstring) | |
297 ;; Make sure the docstring mentions the mode's hook. | |
298 (setq docstring | |
299 (concat docstring | |
300 (if (null parent) | |
301 "\n\nThis mode " | |
302 (concat | |
303 "\n\nIn addition to any hooks its parent mode " | |
304 (if (string-match (regexp-quote (format "`%s'" parent)) | |
305 docstring) nil | |
306 (format "`%s' " parent)) | |
307 "might have run,\nthis mode ")) | |
308 (format "runs the hook `%s'" hook) | |
309 ", as the final step\nduring initialization."))) | |
310 | |
311 (unless (string-match "\\\\[{[]" docstring) | |
312 ;; And don't forget to put the mode's keymap. | |
313 (setq docstring (concat docstring "\n\n\\{" (symbol-name map) "}"))) | |
314 | |
315 docstring)) | |
316 | |
317 | |
318 ;;; OBSOLETE | |
319 ;; The functions below are only provided for backward compatibility with | |
320 ;; code byte-compiled with versions of derived.el prior to Emacs-21. | |
321 | |
322 (defsubst derived-mode-setup-function-name (mode) | |
323 "Construct a setup-function name based on a MODE name." | |
324 (intern (concat (symbol-name mode) "-setup"))) | |
325 | |
326 | |
327 ;; Utility functions for defining a derived mode. | |
328 | |
329 ;;;###autoload | |
330 (defun derived-mode-init-mode-variables (mode) | |
63510
9d09522aef6b
(derived-mode-init-mode-variables): Fix spelling in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
63345
diff
changeset
|
331 "Initialize variables for a new MODE. |
51349 | 332 Right now, if they don't already exist, set up a blank keymap, an |
333 empty syntax table, and an empty abbrev table -- these will be merged | |
334 the first time the mode is used." | |
335 | |
336 (if (boundp (derived-mode-map-name mode)) | |
337 t | |
338 (eval `(defvar ,(derived-mode-map-name mode) | |
339 (make-sparse-keymap) | |
340 ,(format "Keymap for %s." mode))) | |
341 (put (derived-mode-map-name mode) 'derived-mode-unmerged t)) | |
342 | |
343 (if (boundp (derived-mode-syntax-table-name mode)) | |
344 t | |
345 (eval `(defvar ,(derived-mode-syntax-table-name mode) | |
346 ;; Make a syntax table which doesn't specify anything | |
347 ;; for any char. Valid data will be merged in by | |
348 ;; derived-mode-merge-syntax-tables. | |
349 (make-char-table 'syntax-table nil) | |
350 ,(format "Syntax table for %s." mode))) | |
351 (put (derived-mode-syntax-table-name mode) 'derived-mode-unmerged t)) | |
352 | |
353 (if (boundp (derived-mode-abbrev-table-name mode)) | |
354 t | |
355 (eval `(defvar ,(derived-mode-abbrev-table-name mode) | |
356 (progn | |
357 (define-abbrev-table (derived-mode-abbrev-table-name mode) nil) | |
358 (make-abbrev-table)) | |
359 ,(format "Abbrev table for %s." mode))))) | |
360 | |
361 ;; Utility functions for running a derived mode. | |
362 | |
363 (defun derived-mode-set-keymap (mode) | |
364 "Set the keymap of the new MODE, maybe merging with the parent." | |
365 (let* ((map-name (derived-mode-map-name mode)) | |
366 (new-map (eval map-name)) | |
367 (old-map (current-local-map))) | |
368 (and old-map | |
369 (get map-name 'derived-mode-unmerged) | |
370 (derived-mode-merge-keymaps old-map new-map)) | |
371 (put map-name 'derived-mode-unmerged nil) | |
372 (use-local-map new-map))) | |
373 | |
374 (defun derived-mode-set-syntax-table (mode) | |
375 "Set the syntax table of the new MODE, maybe merging with the parent." | |
376 (let* ((table-name (derived-mode-syntax-table-name mode)) | |
377 (old-table (syntax-table)) | |
378 (new-table (eval table-name))) | |
379 (if (get table-name 'derived-mode-unmerged) | |
380 (derived-mode-merge-syntax-tables old-table new-table)) | |
381 (put table-name 'derived-mode-unmerged nil) | |
382 (set-syntax-table new-table))) | |
383 | |
384 (defun derived-mode-set-abbrev-table (mode) | |
385 "Set the abbrev table for MODE if it exists. | |
386 Always merge its parent into it, since the merge is non-destructive." | |
387 (let* ((table-name (derived-mode-abbrev-table-name mode)) | |
388 (old-table local-abbrev-table) | |
389 (new-table (eval table-name))) | |
390 (derived-mode-merge-abbrev-tables old-table new-table) | |
391 (setq local-abbrev-table new-table))) | |
392 | |
64333
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
393 (defun derived-mode-run-hooks (mode) |
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
394 "Run the mode hook for MODE." |
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
395 (let ((hooks-name (derived-mode-hook-name mode))) |
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
396 (if (boundp hooks-name) |
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
397 (run-hooks hooks-name)))) |
92e5d9e433d3
(derived-mode-run-hooks): Reinstalled, as it is needed for pre-21 compatibility.
Juanma Barranquero <lekktu@gmail.com>
parents:
64328
diff
changeset
|
398 |
51349 | 399 ;; Functions to merge maps and tables. |
400 | |
401 (defun derived-mode-merge-keymaps (old new) | |
402 "Merge an OLD keymap into a NEW one. | |
403 The old keymap is set to be the last cdr of the new one, so that there will | |
404 be automatic inheritance." | |
405 ;; ?? Can this just use `set-keymap-parent'? | |
406 (let ((tail new)) | |
407 ;; Scan the NEW map for prefix keys. | |
408 (while (consp tail) | |
409 (and (consp (car tail)) | |
410 (let* ((key (vector (car (car tail)))) | |
411 (subnew (lookup-key new key)) | |
412 (subold (lookup-key old key))) | |
413 ;; If KEY is a prefix key in both OLD and NEW, merge them. | |
414 (and (keymapp subnew) (keymapp subold) | |
415 (derived-mode-merge-keymaps subold subnew)))) | |
416 (and (vectorp (car tail)) | |
417 ;; Search a vector of ASCII char bindings for prefix keys. | |
418 (let ((i (1- (length (car tail))))) | |
419 (while (>= i 0) | |
420 (let* ((key (vector i)) | |
421 (subnew (lookup-key new key)) | |
422 (subold (lookup-key old key))) | |
423 ;; If KEY is a prefix key in both OLD and NEW, merge them. | |
424 (and (keymapp subnew) (keymapp subold) | |
425 (derived-mode-merge-keymaps subold subnew))) | |
426 (setq i (1- i))))) | |
427 (setq tail (cdr tail)))) | |
428 (setcdr (nthcdr (1- (length new)) new) old)) | |
429 | |
430 (defun derived-mode-merge-syntax-tables (old new) | |
431 "Merge an OLD syntax table into a NEW one. | |
432 Where the new table already has an entry, nothing is copied from the old one." | |
433 (set-char-table-parent new old)) | |
434 | |
435 ;; Merge an old abbrev table into a new one. | |
436 ;; This function requires internal knowledge of how abbrev tables work, | |
437 ;; presuming that they are obarrays with the abbrev as the symbol, the expansion | |
438 ;; as the value of the symbol, and the hook as the function definition. | |
439 (defun derived-mode-merge-abbrev-tables (old new) | |
440 (if old | |
441 (mapatoms | |
442 (lambda (symbol) | |
443 (or (intern-soft (symbol-name symbol) new) | |
444 (define-abbrev new (symbol-name symbol) | |
445 (symbol-value symbol) (symbol-function symbol)))) | |
446 old))) | |
447 | |
448 (provide 'derived) | |
449 | |
63345 | 450 ;; arch-tag: 630be248-47d1-4f02-afa0-8207de0ebea0 |
51349 | 451 ;;; derived.el ends here |