newcomment and the change of binding for M-;
[bpt/emacs.git] / lisp / derived.el
CommitLineData
b035a678 1;;; derived.el --- allow inheritance of major modes.
06d35594 2;;; (formerly mode-clone.el)
76078cf0 3
04c817d4 4;; Copyright (C) 1993, 1994, 1999 Free Software Foundation, Inc.
76078cf0
RS
5
6;; Author: David Megginson (dmeggins@aix1.uottawa.ca)
26757b4b 7;; Maintainer: FSF
f947a7fa 8;; Keywords: extensions
76078cf0
RS
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
b578f267
EN
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
76078cf0
RS
26\f
27;;; Commentary:
28
c7ea3acc
SM
29;; Obsolete.
30;; Use the `derived-major-mode' provided by easy-mmode.el instead.
31;; It is only kept for backward compatibility with byte-compiled files
32;; which refer to `derived-mode-init-mode-variables' and other functions.
33
34
35
76078cf0
RS
36;; GNU Emacs is already, in a sense, object oriented -- each object
37;; (buffer) belongs to a class (major mode), and that class defines
38;; the relationship between messages (input events) and methods
39;; (commands) by means of a keymap.
40;;
41;; The only thing missing is a good scheme of inheritance. It is
42;; possible to simulate a single level of inheritance with generous
43;; use of hooks and a bit of work -- sgml-mode, for example, also runs
44;; the hooks for text-mode, and keymaps can inherit from other keymaps
45;; -- but generally, each major mode ends up reinventing the wheel.
46;; Ideally, someone should redesign all of Emacs's major modes to
47;; follow a more conventional object-oriented system: when defining a
48;; new major mode, the user should need only to name the existing mode
49;; it is most similar to, then list the (few) differences.
50;;
51;; In the mean time, this package offers most of the advantages of
b72226e3 52;; full inheritance with the existing major modes. The macro
06d35594 53;; `define-derived-mode' allows the user to make a variant of an existing
76078cf0
RS
54;; major mode, with its own keymap. The new mode will inherit the key
55;; bindings of its parent, and will, in fact, run its parent first
56;; every time it is called. For example, the commands
57;;
06d35594 58;; (define-derived-mode hypertext-mode text-mode "Hypertext"
76078cf0
RS
59;; "Major mode for hypertext.\n\n\\{hypertext-mode-map}"
60;; (setq case-fold-search nil))
61;;
62;; (define-key hypertext-mode-map [down-mouse-3] 'do-hyper-link)
63;;
64;; will create a function `hypertext-mode' with its own (sparse)
65;; keymap `hypertext-mode-map.' The command M-x hypertext-mode will
66;; perform the following actions:
67;;
68;; - run the command (text-mode) to get its default setup
69;; - replace the current keymap with 'hypertext-mode-map,' which will
70;; inherit from 'text-mode-map'.
71;; - replace the current syntax table with
72;; 'hypertext-mode-syntax-table', which will borrow its defaults
73;; from the current text-mode-syntax-table.
26757b4b
RS
74;; - replace the current abbrev table with
75;; 'hypertext-mode-abbrev-table', which will borrow its defaults
76;; from the current text-mode-abbrev table
76078cf0
RS
77;; - change the mode line to read "Hypertext"
78;; - assign the value 'hypertext-mode' to the 'major-mode' variable
79;; - run the body of commands provided in the macro -- in this case,
80;; set the local variable `case-fold-search' to nil.
76078cf0
RS
81;;
82;; The advantages of this system are threefold. First, text mode is
83;; untouched -- if you had added the new keystroke to `text-mode-map,'
84;; possibly using hooks, you would have added it to all text buffers
85;; -- here, it appears only in hypertext buffers, where it makes
06d35594
RS
86;; sense. Second, it is possible to build even further, and make
87;; a derived mode from a derived mode. The commands
76078cf0 88;;
06d35594 89;; (define-derived-mode html-mode hypertext-mode "HTML")
76078cf0
RS
90;; [various key definitions]
91;;
92;; will add a new major mode for HTML with very little fuss.
93;;
06d35594
RS
94;; Note also the function `derived-mode-class,' which returns the non-derived
95;; major mode which a derived mode is based on (ie. NOT necessarily the
76078cf0
RS
96;; immediate parent).
97;;
06d35594
RS
98;; (derived-mode-class 'text-mode) ==> text-mode
99;; (derived-mode-class 'hypertext-mode) ==> text-mode
100;; (derived-mode-class 'html-mode) ==> text-mode
76078cf0
RS
101\f
102;;; Code:
103
104;; PUBLIC: define a new major mode which inherits from an existing one.
105
c7ea3acc 106;; ;;;###autoload
06d35594
RS
107(defmacro define-derived-mode (child parent name &optional docstring &rest body)
108 "Create a new mode as a variant of an existing mode.
76078cf0
RS
109
110The arguments to this command are as follow:
111
06d35594 112CHILD: the name of the command for the derived mode.
04c817d4
DL
113PARENT: the name of the command for the parent mode (e.g. `text-mode').
114NAME: a string which will appear in the status line (e.g. \"Hypertext\")
b72226e3
RS
115DOCSTRING: an optional documentation string--if you do not supply one,
116 the function will attempt to invent something useful.
117BODY: forms to execute just before running the
76078cf0
RS
118 hooks for the new mode.
119
06d35594 120Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
76078cf0 121
06d35594 122 (define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
76078cf0 123
b72226e3
RS
124You could then make new key bindings for `LaTeX-thesis-mode-map'
125without changing regular LaTeX mode. In this example, BODY is empty,
126and DOCSTRING is generated by default.
76078cf0 127
04c817d4 128On a more complicated level, the following command uses `sgml-mode' as
06d35594 129the parent, and then sets the variable `case-fold-search' to nil:
76078cf0 130
06d35594 131 (define-derived-mode article-mode sgml-mode \"Article\"
76078cf0
RS
132 \"Major mode for editing technical articles.\"
133 (setq case-fold-search nil))
134
135Note that if the documentation string had been left out, it would have
136been generated automatically, with a reference to the keymap."
137
138 ; Some trickiness, since what
139 ; appears to be the docstring
140 ; may really be the first
141 ; element of the body.
142 (if (and docstring (not (stringp docstring)))
143 (progn (setq body (cons docstring body))
144 (setq docstring nil)))
06d35594 145 (setq docstring (or docstring (derived-mode-make-docstring parent child)))
76078cf0 146
04c817d4
DL
147 `(progn
148 (derived-mode-init-mode-variables (quote ,child))
149 (defun ,child ()
150 ,docstring
151 (interactive)
76078cf0 152 ; Run the parent.
04c817d4 153 (,parent)
76078cf0 154 ; Identify special modes.
04c817d4
DL
155 (if (get (quote ,parent) 'special)
156 (put (quote ,child) 'special t))
76078cf0 157 ; Identify the child mode.
04c817d4
DL
158 (setq major-mode (quote ,child))
159 (setq mode-name ,name)
76078cf0 160 ; Set up maps and tables.
04c817d4
DL
161 (derived-mode-set-keymap (quote ,child))
162 (derived-mode-set-syntax-table (quote ,child))
163 (derived-mode-set-abbrev-table (quote ,child))
76078cf0 164 ; Splice in the body (if any).
04c817d4 165 ,@body
b72226e3
RS
166;;; ; Run the setup function, if
167;;; ; any -- this will soon be
168;;; ; obsolete.
04c817d4
DL
169;;; (derived-mode-run-setup-function (quote ,child))
170 ; Run the hooks, if any.
171 (derived-mode-run-hooks (quote ,child)))))
76078cf0
RS
172
173
06d35594 174;; PUBLIC: find the ultimate class of a derived mode.
76078cf0 175
06d35594 176(defun derived-mode-class (mode)
04c817d4 177 "Find the class of a major MODE.
06d35594
RS
178A mode's class is the first ancestor which is NOT a derived mode.
179Use the `derived-mode-parent' property of the symbol to trace backwards."
180 (while (get mode 'derived-mode-parent)
181 (setq mode (get mode 'derived-mode-parent)))
76078cf0
RS
182 mode)
183
184\f
185;; Inline functions to construct various names from a mode name.
186
06d35594 187(defsubst derived-mode-setup-function-name (mode)
04c817d4 188 "Construct a setup-function name based on a MODE name."
76078cf0
RS
189 (intern (concat (symbol-name mode) "-setup")))
190
e2154af9
RS
191(defsubst derived-mode-hook-name (mode)
192 "Construct the mode hook name based on mode name MODE."
193 (intern (concat (symbol-name mode) "-hook")))
76078cf0 194
06d35594 195(defsubst derived-mode-map-name (mode)
04c817d4 196 "Construct a map name based on a MODE name."
76078cf0
RS
197 (intern (concat (symbol-name mode) "-map")))
198
06d35594 199(defsubst derived-mode-syntax-table-name (mode)
04c817d4 200 "Construct a syntax-table name based on a MODE name."
76078cf0
RS
201 (intern (concat (symbol-name mode) "-syntax-table")))
202
06d35594 203(defsubst derived-mode-abbrev-table-name (mode)
04c817d4 204 "Construct an abbrev-table name based on a MODE name."
76078cf0
RS
205 (intern (concat (symbol-name mode) "-abbrev-table")))
206
207\f
06d35594 208;; Utility functions for defining a derived mode.
76078cf0 209
ec830850 210;;;###autoload
06d35594 211(defun derived-mode-init-mode-variables (mode)
04c817d4 212 "Initialise variables for a new MODE.
26757b4b
RS
213Right now, if they don't already exist, set up a blank keymap, an
214empty syntax table, and an empty abbrev table -- these will be merged
215the first time the mode is used."
216
06d35594 217 (if (boundp (derived-mode-map-name mode))
26757b4b 218 t
04c817d4 219 (eval `(defvar ,(derived-mode-map-name mode)
26757b4b 220 (make-sparse-keymap)
04c817d4 221 ,(format "Keymap for %s." mode)))
06d35594 222 (put (derived-mode-map-name mode) 'derived-mode-unmerged t))
26757b4b 223
06d35594 224 (if (boundp (derived-mode-syntax-table-name mode))
26757b4b 225 t
04c817d4
DL
226 (eval `(defvar ,(derived-mode-syntax-table-name mode)
227 ;; Make a syntax table which doesn't specify anything
228 ;; for any char. Valid data will be merged in by
229 ;; derived-mode-merge-syntax-tables.
230 (make-char-table 'syntax-table nil)
231 ,(format "Syntax table for %s." mode)))
06d35594 232 (put (derived-mode-syntax-table-name mode) 'derived-mode-unmerged t))
26757b4b 233
06d35594 234 (if (boundp (derived-mode-abbrev-table-name mode))
26757b4b 235 t
04c817d4
DL
236 (eval `(defvar ,(derived-mode-abbrev-table-name mode)
237 (progn
238 (define-abbrev-table (derived-mode-abbrev-table-name mode) nil)
239 (make-abbrev-table))
240 ,(format "Abbrev table for %s." mode)))))
76078cf0 241
06d35594 242(defun derived-mode-make-docstring (parent child)
76078cf0
RS
243 "Construct a docstring for a new mode if none is provided."
244
06d35594 245 (format "This major mode is a variant of `%s', created by `define-derived-mode'.
b72226e3
RS
246It inherits all of the parent's attributes, but has its own keymap,
247abbrev table and syntax table:
76078cf0 248
b72226e3 249 `%s-map' and `%s-syntax-table'
76078cf0
RS
250
251which more-or-less shadow
252
b72226e3 253 `%s-map' and `%s-syntax-table'
76078cf0
RS
254
255\\{%s-map}" parent child child parent parent child))
256
257\f
06d35594 258;; Utility functions for running a derived mode.
76078cf0 259
06d35594 260(defun derived-mode-set-keymap (mode)
04c817d4 261 "Set the keymap of the new MODE, maybe merging with the parent."
06d35594 262 (let* ((map-name (derived-mode-map-name mode))
76078cf0
RS
263 (new-map (eval map-name))
264 (old-map (current-local-map)))
f34e6918
RS
265 (and old-map
266 (get map-name 'derived-mode-unmerged)
267 (derived-mode-merge-keymaps old-map new-map))
06d35594 268 (put map-name 'derived-mode-unmerged nil)
26757b4b 269 (use-local-map new-map)))
76078cf0 270
04c817d4
DL
271(defun derived-mode-set-syntax-table (mode)
272 "Set the syntax table of the new MODE, maybe merging with the parent."
06d35594 273 (let* ((table-name (derived-mode-syntax-table-name mode))
76078cf0
RS
274 (old-table (syntax-table))
275 (new-table (eval table-name)))
06d35594
RS
276 (if (get table-name 'derived-mode-unmerged)
277 (derived-mode-merge-syntax-tables old-table new-table))
278 (put table-name 'derived-mode-unmerged nil)
26757b4b 279 (set-syntax-table new-table)))
76078cf0 280
06d35594 281(defun derived-mode-set-abbrev-table (mode)
04c817d4 282 "Set the abbrev table for MODE if it exists.
26757b4b 283Always merge its parent into it, since the merge is non-destructive."
06d35594 284 (let* ((table-name (derived-mode-abbrev-table-name mode))
26757b4b
RS
285 (old-table local-abbrev-table)
286 (new-table (eval table-name)))
06d35594 287 (derived-mode-merge-abbrev-tables old-table new-table)
26757b4b 288 (setq local-abbrev-table new-table)))
76078cf0 289
06d35594 290;;;(defun derived-mode-run-setup-function (mode)
b72226e3 291;;; "Run the setup function if it exists."
76078cf0 292
06d35594 293;;; (let ((fname (derived-mode-setup-function-name mode)))
b72226e3
RS
294;;; (if (fboundp fname)
295;;; (funcall fname))))
76078cf0 296
06d35594 297(defun derived-mode-run-hooks (mode)
e2154af9 298 "Run the mode hook for MODE."
76078cf0 299
e2154af9 300 (let ((hooks-name (derived-mode-hook-name mode)))
76078cf0
RS
301 (if (boundp hooks-name)
302 (run-hooks hooks-name))))
303
304;; Functions to merge maps and tables.
305
06d35594 306(defun derived-mode-merge-keymaps (old new)
04c817d4 307 "Merge an OLD keymap into a NEW one.
37a4f4b6 308The old keymap is set to be the last cdr of the new one, so that there will
76078cf0 309be automatic inheritance."
04c817d4 310 ;; ?? Can this just use `set-keymap-parent'?
37a4f4b6
RS
311 (let ((tail new))
312 ;; Scan the NEW map for prefix keys.
313 (while (consp tail)
314 (and (consp (car tail))
315 (let* ((key (vector (car (car tail))))
316 (subnew (lookup-key new key))
317 (subold (lookup-key old key)))
318 ;; If KEY is a prefix key in both OLD and NEW, merge them.
319 (and (keymapp subnew) (keymapp subold)
320 (derived-mode-merge-keymaps subold subnew))))
321 (and (vectorp (car tail))
322 ;; Search a vector of ASCII char bindings for prefix keys.
323 (let ((i (1- (length (car tail)))))
324 (while (>= i 0)
325 (let* ((key (vector i))
326 (subnew (lookup-key new key))
327 (subold (lookup-key old key)))
328 ;; If KEY is a prefix key in both OLD and NEW, merge them.
329 (and (keymapp subnew) (keymapp subold)
330 (derived-mode-merge-keymaps subold subnew)))
331 (setq i (1- i)))))
332 (setq tail (cdr tail))))
26757b4b 333 (setcdr (nthcdr (1- (length new)) new) old))
76078cf0 334
06d35594 335(defun derived-mode-merge-syntax-tables (old new)
04c817d4 336 "Merge an OLD syntax table into a NEW one.
76078cf0 337Where the new table already has an entry, nothing is copied from the old one."
5dee7dae 338 (set-char-table-parent new old))
26757b4b 339
56152e17
RS
340;; Merge an old abbrev table into a new one.
341;; This function requires internal knowledge of how abbrev tables work,
342;; presuming that they are obarrays with the abbrev as the symbol, the expansion
343;; as the value of the symbol, and the hook as the function definition.
06d35594 344(defun derived-mode-merge-abbrev-tables (old new)
56152e17 345 (if old
04c817d4
DL
346 (mapatoms
347 (lambda (symbol)
348 (or (intern-soft (symbol-name symbol) new)
349 (define-abbrev new (symbol-name symbol)
350 (symbol-value symbol) (symbol-function symbol))))
56152e17 351 old)))
76078cf0 352
06d35594 353(provide 'derived)
26757b4b 354
06d35594 355;;; derived.el ends here