annotate lisp/utils/derived.el @ 30:ec9a17fef872 r19-15b98

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