2021-01-28 14:42:21 -05:00
|
|
|
|
;;; derived.el --- allow inheritance of major modes -*- lexical-binding: t; -*-
|
2005-06-12 16:57:08 +00:00
|
|
|
|
;; (formerly mode-clone.el)
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2025-01-01 07:39:17 +00:00
|
|
|
|
;; Copyright (C) 1993-2025 Free Software Foundation, Inc.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2022-07-20 22:34:34 +02:00
|
|
|
|
;; Author: David Megginson <dmeggins@aix1.uottawa.ca>
|
2019-05-25 13:43:06 -07:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;; Keywords: extensions
|
2010-08-29 12:17:13 -04:00
|
|
|
|
;; Package: emacs
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 03:21:21 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2003-05-30 23:31:15 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 03:21:21 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is already, in a sense, object oriented -- each object
|
|
|
|
|
;; (buffer) belongs to a class (major mode), and that class defines
|
|
|
|
|
;; the relationship between messages (input events) and methods
|
|
|
|
|
;; (commands) by means of a keymap.
|
|
|
|
|
;;
|
|
|
|
|
;; The only thing missing is a good scheme of inheritance. It is
|
|
|
|
|
;; possible to simulate a single level of inheritance with generous
|
|
|
|
|
;; use of hooks and a bit of work -- sgml-mode, for example, also runs
|
|
|
|
|
;; the hooks for text-mode, and keymaps can inherit from other keymaps
|
|
|
|
|
;; -- but generally, each major mode ends up reinventing the wheel.
|
|
|
|
|
;; Ideally, someone should redesign all of Emacs's major modes to
|
|
|
|
|
;; follow a more conventional object-oriented system: when defining a
|
|
|
|
|
;; new major mode, the user should need only to name the existing mode
|
|
|
|
|
;; it is most similar to, then list the (few) differences.
|
|
|
|
|
;;
|
|
|
|
|
;; In the mean time, this package offers most of the advantages of
|
|
|
|
|
;; full inheritance with the existing major modes. The macro
|
|
|
|
|
;; `define-derived-mode' allows the user to make a variant of an existing
|
|
|
|
|
;; major mode, with its own keymap. The new mode will inherit the key
|
|
|
|
|
;; bindings of its parent, and will, in fact, run its parent first
|
|
|
|
|
;; every time it is called. For example, the commands
|
|
|
|
|
;;
|
|
|
|
|
;; (define-derived-mode hypertext-mode text-mode "Hypertext"
|
|
|
|
|
;; "Major mode for hypertext.\n\n\\{hypertext-mode-map}"
|
|
|
|
|
;; (setq case-fold-search nil))
|
|
|
|
|
;;
|
|
|
|
|
;; (define-key hypertext-mode-map [down-mouse-3] 'do-hyper-link)
|
|
|
|
|
;;
|
|
|
|
|
;; will create a function `hypertext-mode' with its own (sparse)
|
|
|
|
|
;; keymap `hypertext-mode-map.' The command M-x hypertext-mode will
|
|
|
|
|
;; perform the following actions:
|
|
|
|
|
;;
|
|
|
|
|
;; - run the command (text-mode) to get its default setup
|
|
|
|
|
;; - replace the current keymap with 'hypertext-mode-map,' which will
|
|
|
|
|
;; inherit from 'text-mode-map'.
|
|
|
|
|
;; - replace the current syntax table with
|
|
|
|
|
;; 'hypertext-mode-syntax-table', which will borrow its defaults
|
|
|
|
|
;; from the current text-mode-syntax-table.
|
|
|
|
|
;; - replace the current abbrev table with
|
|
|
|
|
;; 'hypertext-mode-abbrev-table', which will borrow its defaults
|
|
|
|
|
;; from the current text-mode-abbrev table
|
|
|
|
|
;; - change the mode line to read "Hypertext"
|
|
|
|
|
;; - assign the value 'hypertext-mode' to the 'major-mode' variable
|
|
|
|
|
;; - run the body of commands provided in the macro -- in this case,
|
|
|
|
|
;; set the local variable `case-fold-search' to nil.
|
|
|
|
|
;;
|
|
|
|
|
;; The advantages of this system are threefold. First, text mode is
|
|
|
|
|
;; untouched -- if you had added the new keystroke to `text-mode-map,'
|
|
|
|
|
;; possibly using hooks, you would have added it to all text buffers
|
|
|
|
|
;; -- here, it appears only in hypertext buffers, where it makes
|
|
|
|
|
;; sense. Second, it is possible to build even further, and make
|
|
|
|
|
;; a derived mode from a derived mode. The commands
|
|
|
|
|
;;
|
|
|
|
|
;; (define-derived-mode html-mode hypertext-mode "HTML")
|
|
|
|
|
;; [various key definitions]
|
|
|
|
|
;;
|
|
|
|
|
;; will add a new major mode for HTML with very little fuss.
|
|
|
|
|
;;
|
|
|
|
|
;; Note also the function `derived-mode-p' which can tell if the current
|
|
|
|
|
;; mode derives from another. In a hypertext-mode, buffer, for example,
|
|
|
|
|
;; (derived-mode-p 'text-mode) would return non-nil. This should always
|
|
|
|
|
;; be used in place of (eq major-mode 'text-mode).
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;;; PRIVATE: defsubst must be defined before they are first used
|
|
|
|
|
|
|
|
|
|
(defsubst derived-mode-hook-name (mode)
|
2021-09-25 18:59:37 +02:00
|
|
|
|
"Construct a mode-hook name based on the symbol MODE."
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(intern (concat (symbol-name mode) "-hook")))
|
|
|
|
|
|
|
|
|
|
(defsubst derived-mode-map-name (mode)
|
2021-09-25 18:59:37 +02:00
|
|
|
|
"Construct a map name based on the symbol MODE."
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(intern (concat (symbol-name mode) "-map")))
|
|
|
|
|
|
|
|
|
|
(defsubst derived-mode-syntax-table-name (mode)
|
2021-09-25 18:59:37 +02:00
|
|
|
|
"Construct a syntax-table name based on the symbol MODE."
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(intern (concat (symbol-name mode) "-syntax-table")))
|
|
|
|
|
|
|
|
|
|
(defsubst derived-mode-abbrev-table-name (mode)
|
2021-09-25 18:59:37 +02:00
|
|
|
|
"Construct an abbrev-table name based on the symbol MODE."
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(intern (concat (symbol-name mode) "-abbrev-table")))
|
|
|
|
|
|
|
|
|
|
;; PUBLIC: define a new major mode which inherits from an existing one.
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro define-derived-mode (child parent name &optional docstring &rest body)
|
2019-07-28 17:31:17 +03:00
|
|
|
|
"Create a new mode CHILD which is a variant of an existing mode PARENT.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
2019-07-28 17:31:17 +03:00
|
|
|
|
The arguments are as follows:
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
CHILD: the name of the command for the derived mode.
|
|
|
|
|
PARENT: the name of the command for the parent mode (e.g. `text-mode')
|
|
|
|
|
or nil if there is no parent.
|
2021-09-25 18:59:37 +02:00
|
|
|
|
NAME: a string that will appear in the mode line (e.g. \"HTML\")
|
2003-05-30 23:31:15 +00:00
|
|
|
|
DOCSTRING: an optional documentation string--if you do not supply one,
|
|
|
|
|
the function will attempt to invent something useful.
|
2019-07-28 17:31:17 +03:00
|
|
|
|
KEYWORD-ARGS:
|
|
|
|
|
optional arguments in the form of pairs of keyword and value.
|
|
|
|
|
The following keyword arguments are currently supported:
|
|
|
|
|
|
|
|
|
|
:group GROUP
|
|
|
|
|
Declare the customization group that corresponds
|
|
|
|
|
to this mode. The command `customize-mode' uses this.
|
|
|
|
|
:syntax-table TABLE
|
|
|
|
|
Use TABLE instead of the default (CHILD-syntax-table).
|
2021-09-25 21:25:58 +02:00
|
|
|
|
A nil value means to simply use the same syntax-table
|
|
|
|
|
as the parent.
|
2019-07-28 17:31:17 +03:00
|
|
|
|
:abbrev-table TABLE
|
|
|
|
|
Use TABLE instead of the default (CHILD-abbrev-table).
|
2021-09-25 21:25:58 +02:00
|
|
|
|
A nil value means to simply use the same abbrev-table
|
|
|
|
|
as the parent.
|
2019-07-28 17:31:17 +03:00
|
|
|
|
:after-hook FORM
|
2021-09-18 13:12:41 +02:00
|
|
|
|
A single Lisp form which is evaluated after the mode
|
2019-07-28 17:31:17 +03:00
|
|
|
|
hooks have been run. It should not be quoted.
|
2021-02-14 12:50:19 +01:00
|
|
|
|
:interactive BOOLEAN
|
|
|
|
|
Whether the derived mode should be `interactive' or not.
|
|
|
|
|
The default is t.
|
2019-07-28 17:31:17 +03:00
|
|
|
|
|
2003-05-30 23:31:15 +00:00
|
|
|
|
BODY: forms to execute just before running the
|
|
|
|
|
hooks for the new mode. Do not use `interactive' here.
|
|
|
|
|
|
|
|
|
|
Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode:
|
|
|
|
|
|
|
|
|
|
(define-derived-mode LaTeX-thesis-mode LaTeX-mode \"LaTeX-Thesis\")
|
|
|
|
|
|
|
|
|
|
You could then make new key bindings for `LaTeX-thesis-mode-map'
|
|
|
|
|
without changing regular LaTeX mode. In this example, BODY is empty,
|
|
|
|
|
and DOCSTRING is generated by default.
|
|
|
|
|
|
2019-07-26 13:05:08 +02:00
|
|
|
|
As a more complex example, the following command uses `sgml-mode' as
|
2003-05-30 23:31:15 +00:00
|
|
|
|
the parent, and then sets the variable `case-fold-search' to nil:
|
|
|
|
|
|
|
|
|
|
(define-derived-mode article-mode sgml-mode \"Article\"
|
|
|
|
|
\"Major mode for editing technical articles.\"
|
|
|
|
|
(setq case-fold-search nil))
|
|
|
|
|
|
|
|
|
|
Note that if the documentation string had been left out, it would have
|
2003-07-23 00:00:13 +00:00
|
|
|
|
been generated automatically, with a reference to the keymap.
|
|
|
|
|
|
2021-09-25 18:59:37 +02:00
|
|
|
|
The new mode runs the hook named MODE-hook. For `foo-mode',
|
|
|
|
|
the hook will be named `foo-mode-hook'.
|
2005-05-14 18:32:45 +00:00
|
|
|
|
|
2019-07-27 12:04:53 +02:00
|
|
|
|
See Info node `(elisp)Derived Modes' for more details.
|
|
|
|
|
|
2019-07-28 17:31:17 +03:00
|
|
|
|
\(fn CHILD PARENT NAME [DOCSTRING] [KEYWORD-ARGS...] &rest BODY)"
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(declare (debug (&define name symbolp sexp [&optional stringp]
|
2008-06-21 20:00:04 +00:00
|
|
|
|
[&rest keywordp sexp] def-body))
|
2016-03-01 11:50:11 +08:00
|
|
|
|
(doc-string 4)
|
2021-10-13 21:52:50 +02:00
|
|
|
|
(indent defun))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(when (and docstring (not (stringp docstring)))
|
|
|
|
|
;; Some trickiness, since what appears to be the docstring may really be
|
|
|
|
|
;; the first element of the body.
|
|
|
|
|
(push docstring body)
|
|
|
|
|
(setq docstring nil))
|
|
|
|
|
|
|
|
|
|
(when (eq parent 'fundamental-mode) (setq parent nil))
|
|
|
|
|
|
|
|
|
|
(let ((map (derived-mode-map-name child))
|
|
|
|
|
(syntax (derived-mode-syntax-table-name child))
|
|
|
|
|
(abbrev (derived-mode-abbrev-table-name child))
|
|
|
|
|
(declare-abbrev t)
|
|
|
|
|
(declare-syntax t)
|
|
|
|
|
(hook (derived-mode-hook-name child))
|
2016-05-08 13:24:20 +00:00
|
|
|
|
(group nil)
|
2021-02-14 12:50:19 +01:00
|
|
|
|
(interactive t)
|
2016-05-08 13:24:20 +00:00
|
|
|
|
(after-hook nil))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
;; Process the keyword args.
|
|
|
|
|
(while (keywordp (car body))
|
2012-06-10 09:28:26 -04:00
|
|
|
|
(pcase (pop body)
|
2018-10-27 01:48:35 +02:00
|
|
|
|
(:group (setq group (pop body)))
|
|
|
|
|
(:abbrev-table (setq abbrev (pop body)) (setq declare-abbrev nil))
|
|
|
|
|
(:syntax-table (setq syntax (pop body)) (setq declare-syntax nil))
|
|
|
|
|
(:after-hook (setq after-hook (pop body)))
|
2021-02-14 12:50:19 +01:00
|
|
|
|
(:interactive (setq interactive (pop body)))
|
2012-06-10 09:28:26 -04:00
|
|
|
|
(_ (pop body))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(setq docstring (derived-mode-make-docstring
|
|
|
|
|
parent child docstring syntax abbrev))
|
|
|
|
|
|
|
|
|
|
`(progn
|
2017-10-16 23:38:42 +13:00
|
|
|
|
(defvar ,hook nil)
|
|
|
|
|
(unless (get ',hook 'variable-documentation)
|
|
|
|
|
(put ',hook 'variable-documentation
|
2024-01-20 23:00:54 -05:00
|
|
|
|
,(format "Hook run after entering `%S'.
|
2005-11-14 23:05:53 +00:00
|
|
|
|
No problems result if this variable is not bound.
|
|
|
|
|
`add-hook' automatically binds it. (This is true for all hook variables.)"
|
2024-01-20 23:00:54 -05:00
|
|
|
|
child)))
|
2005-12-04 02:33:41 +00:00
|
|
|
|
(unless (boundp ',map)
|
|
|
|
|
(put ',map 'definition-name ',child))
|
2011-03-22 21:58:27 +01:00
|
|
|
|
(with-no-warnings (defvar ,map (make-sparse-keymap)))
|
2009-09-10 06:21:23 +00:00
|
|
|
|
(unless (get ',map 'variable-documentation)
|
|
|
|
|
(put ',map 'variable-documentation
|
2009-10-26 06:43:36 +00:00
|
|
|
|
(purecopy ,(format "Keymap for `%s'." child))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
,(if declare-syntax
|
2005-12-04 02:33:41 +00:00
|
|
|
|
`(progn
|
2017-01-14 01:47:52 -05:00
|
|
|
|
(defvar ,syntax)
|
2005-12-04 02:33:41 +00:00
|
|
|
|
(unless (boundp ',syntax)
|
2016-12-12 20:03:20 -05:00
|
|
|
|
(put ',syntax 'definition-name ',child)
|
|
|
|
|
(defvar ,syntax (make-syntax-table)))
|
2009-09-10 06:21:23 +00:00
|
|
|
|
(unless (get ',syntax 'variable-documentation)
|
|
|
|
|
(put ',syntax 'variable-documentation
|
2009-10-26 06:43:36 +00:00
|
|
|
|
(purecopy ,(format "Syntax table for `%s'." child))))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
,(if declare-abbrev
|
2005-12-04 02:33:41 +00:00
|
|
|
|
`(progn
|
2017-01-14 01:47:52 -05:00
|
|
|
|
(defvar ,abbrev)
|
2016-12-12 20:03:20 -05:00
|
|
|
|
(unless (boundp ',abbrev)
|
|
|
|
|
(put ',abbrev 'definition-name ',child)
|
|
|
|
|
(defvar ,abbrev
|
|
|
|
|
(progn (define-abbrev-table ',abbrev nil) ,abbrev)))
|
2009-09-18 07:14:43 +00:00
|
|
|
|
(unless (get ',abbrev 'variable-documentation)
|
|
|
|
|
(put ',abbrev 'variable-documentation
|
2009-10-26 06:43:36 +00:00
|
|
|
|
(purecopy ,(format "Abbrev table for `%s'." child))))))
|
2023-11-08 22:53:39 -05:00
|
|
|
|
(if (fboundp 'derived-mode-set-parent) ;; Emacs≥30.1
|
|
|
|
|
(derived-mode-set-parent ',child ',parent)
|
|
|
|
|
(put ',child 'derived-mode-parent ',parent))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
,(if group `(put ',child 'custom-mode-group ,group))
|
|
|
|
|
|
|
|
|
|
(defun ,child ()
|
|
|
|
|
,docstring
|
2021-02-14 12:50:19 +01:00
|
|
|
|
,(and interactive '(interactive))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
; Run the parent.
|
|
|
|
|
(delay-mode-hooks
|
|
|
|
|
|
2011-10-27 11:01:40 +08:00
|
|
|
|
(,(or parent 'kill-all-local-variables))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
; Identify the child mode.
|
|
|
|
|
(setq major-mode (quote ,child))
|
|
|
|
|
(setq mode-name ,name)
|
|
|
|
|
; Identify special modes.
|
|
|
|
|
,(when parent
|
|
|
|
|
`(progn
|
|
|
|
|
(if (get (quote ,parent) 'mode-class)
|
|
|
|
|
(put (quote ,child) 'mode-class
|
|
|
|
|
(get (quote ,parent) 'mode-class)))
|
|
|
|
|
; Set up maps and tables.
|
|
|
|
|
(unless (keymap-parent ,map)
|
2005-06-12 16:57:08 +00:00
|
|
|
|
;; It would probably be better to set the keymap's parent
|
|
|
|
|
;; at the toplevel rather than inside the mode function,
|
|
|
|
|
;; but this is not easy for at least the following reasons:
|
|
|
|
|
;; - the parent (and its keymap) may not yet be loaded.
|
|
|
|
|
;; - the parent's keymap name may be called something else
|
|
|
|
|
;; than <parent>-mode-map.
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(set-keymap-parent ,map (current-local-map)))
|
|
|
|
|
,(when declare-syntax
|
|
|
|
|
`(let ((parent (char-table-parent ,syntax)))
|
|
|
|
|
(unless (and parent
|
|
|
|
|
(not (eq parent (standard-syntax-table))))
|
2011-07-01 12:41:02 -04:00
|
|
|
|
(set-char-table-parent ,syntax (syntax-table)))))
|
|
|
|
|
,(when declare-abbrev
|
2011-07-05 14:26:33 -04:00
|
|
|
|
`(unless (or (abbrev-table-get ,abbrev :parents)
|
|
|
|
|
;; This can happen if the major mode defines
|
|
|
|
|
;; the abbrev-table to be its parent's.
|
|
|
|
|
(eq ,abbrev local-abbrev-table))
|
2011-07-01 12:41:02 -04:00
|
|
|
|
(abbrev-table-put ,abbrev :parents
|
|
|
|
|
(list local-abbrev-table))))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(use-local-map ,map)
|
|
|
|
|
,(when syntax `(set-syntax-table ,syntax))
|
|
|
|
|
,(when abbrev `(setq local-abbrev-table ,abbrev))
|
|
|
|
|
; Splice in the body (if any).
|
|
|
|
|
,@body
|
|
|
|
|
)
|
2017-12-27 17:49:39 -05:00
|
|
|
|
,@(when after-hook
|
|
|
|
|
`((push (lambda () ,after-hook) delayed-after-hook-functions)))
|
|
|
|
|
;; Run the hooks (and delayed-after-hook-functions), if any.
|
|
|
|
|
(run-mode-hooks ',hook)))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; PRIVATE
|
|
|
|
|
|
|
|
|
|
(defun derived-mode-make-docstring (parent child &optional
|
|
|
|
|
docstring syntax abbrev)
|
|
|
|
|
"Construct a docstring for a new mode if none is provided."
|
|
|
|
|
|
|
|
|
|
(let ((map (derived-mode-map-name child))
|
|
|
|
|
(hook (derived-mode-hook-name child)))
|
|
|
|
|
|
|
|
|
|
(unless (stringp docstring)
|
|
|
|
|
;; Use a default docstring.
|
|
|
|
|
(setq docstring
|
|
|
|
|
(if (null parent)
|
2020-12-10 22:36:18 +01:00
|
|
|
|
(concat
|
|
|
|
|
"Major-mode.\n"
|
|
|
|
|
(internal--format-docstring-line
|
|
|
|
|
"Uses keymap `%s'%s%s." map
|
|
|
|
|
(if abbrev (format "%s abbrev table `%s'"
|
|
|
|
|
(if syntax "," " and") abbrev) "")
|
|
|
|
|
(if syntax (format " and syntax-table `%s'" syntax) "")))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
(format "Major mode derived from `%s' by `define-derived-mode'.
|
2012-11-27 11:40:04 -05:00
|
|
|
|
It inherits all of the parent's attributes, but has its own keymap%s:
|
|
|
|
|
|
2021-09-24 17:47:35 +02:00
|
|
|
|
%s
|
2012-11-27 11:40:04 -05:00
|
|
|
|
|
|
|
|
|
which more-or-less shadow%s %s's corresponding table%s."
|
|
|
|
|
parent
|
|
|
|
|
(cond ((and abbrev syntax)
|
|
|
|
|
",\nabbrev table and syntax table")
|
|
|
|
|
(abbrev "\nand abbrev table")
|
|
|
|
|
(syntax "\nand syntax table")
|
|
|
|
|
(t ""))
|
2021-09-24 17:47:35 +02:00
|
|
|
|
(internal--format-docstring-line
|
|
|
|
|
" `%s'%s"
|
|
|
|
|
map
|
|
|
|
|
(cond ((and abbrev syntax)
|
|
|
|
|
(format ", `%s' and `%s'" abbrev syntax))
|
|
|
|
|
((or abbrev syntax)
|
|
|
|
|
(format " and `%s'" (or abbrev syntax)))
|
|
|
|
|
(t "")))
|
2012-11-27 11:40:04 -05:00
|
|
|
|
(if (or abbrev syntax) "" "s")
|
|
|
|
|
parent
|
|
|
|
|
(if (or abbrev syntax) "s" "")))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(unless (string-match (regexp-quote (symbol-name hook)) docstring)
|
|
|
|
|
;; Make sure the docstring mentions the mode's hook.
|
|
|
|
|
(setq docstring
|
2020-12-10 22:36:18 +01:00
|
|
|
|
(concat docstring "\n\n"
|
|
|
|
|
(internal--format-docstring-line
|
|
|
|
|
"%s%s%s"
|
|
|
|
|
(if (null parent)
|
|
|
|
|
"This mode "
|
|
|
|
|
(concat
|
|
|
|
|
"In addition to any hooks its parent mode "
|
|
|
|
|
(if (string-match (format "[`‘]%s['’]"
|
|
|
|
|
(regexp-quote
|
|
|
|
|
(symbol-name parent)))
|
|
|
|
|
docstring)
|
|
|
|
|
nil
|
|
|
|
|
(format "`%s' " parent))
|
|
|
|
|
"might have run, this mode "))
|
|
|
|
|
(format "runs the hook `%s'" hook)
|
|
|
|
|
", as the final or penultimate step during initialization."))))
|
2003-05-30 23:31:15 +00:00
|
|
|
|
|
|
|
|
|
(unless (string-match "\\\\[{[]" docstring)
|
|
|
|
|
;; And don't forget to put the mode's keymap.
|
|
|
|
|
(setq docstring (concat docstring "\n\n\\{" (symbol-name map) "}")))
|
|
|
|
|
|
|
|
|
|
docstring))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'derived)
|
|
|
|
|
|
|
|
|
|
;;; derived.el ends here
|