annotate lisp/derived.el @ 5796:b53b2df1351d

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