annotate lisp/derived.el @ 6031:ae4c6623837b

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