diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-25 21:25:58 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-25 21:27:11 +0200 |
commit | 822625fde5ae951d1e6e192272223df2d1eaaa84 (patch) | |
tree | a265157b160fd29bd5bd1cf96aa7aef49bd16ff2 /lisp/emacs-lisp/derived.el | |
parent | a1a63bb794156af38ac0ed55fd453705a183ebcd (diff) | |
download | emacs-822625fde5ae951d1e6e192272223df2d1eaaa84.tar.gz emacs-822625fde5ae951d1e6e192272223df2d1eaaa84.tar.bz2 emacs-822625fde5ae951d1e6e192272223df2d1eaaa84.zip |
Revert part of previous doc fix
* lisp/emacs-lisp/derived.el (define-derived-mode): Revert part of
previous doc fix. This change made the text confusing. (Bug#17567)
Diffstat (limited to 'lisp/emacs-lisp/derived.el')
-rw-r--r-- | lisp/emacs-lisp/derived.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index 9557f3a4634..5aa745262ad 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el @@ -132,12 +132,12 @@ KEYWORD-ARGS: to this mode. The command `customize-mode' uses this. :syntax-table TABLE Use TABLE instead of the default (CHILD-syntax-table). - TABLE should be an unquoted symbol. A nil value means - to simply use the same syntax-table as the parent. + A nil value means to simply use the same syntax-table + as the parent. :abbrev-table TABLE Use TABLE instead of the default (CHILD-abbrev-table). - TABLE should be an unquoted symbol. A nil value means - to simply use the same abbrev-table as the parent. + A nil value means to simply use the same abbrev-table + as the parent. :after-hook FORM A single Lisp form which is evaluated after the mode hooks have been run. It should not be quoted. |