diff options
author | Glenn Morris <rgm@gnu.org> | 2011-08-24 22:37:55 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-08-24 22:37:55 -0700 |
commit | b2948976fc35f12755c5d33e81578e5f3db0d884 (patch) | |
tree | b657dbec8b4408662e8880cf5481ee2a79f3331f /lisp/emacs-lisp | |
parent | e4ed06f12b052a3c80d5c572889cb670a41f3c7d (diff) | |
download | emacs-b2948976fc35f12755c5d33e81578e5f3db0d884.tar.gz emacs-b2948976fc35f12755c5d33e81578e5f3db0d884.tar.bz2 emacs-b2948976fc35f12755c5d33e81578e5f3db0d884.zip |
* lisp/emacs-lisp/derived.el (define-derived-mode): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/derived.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/derived.el b/lisp/emacs-lisp/derived.el index 4fda2bf1d52..81932f9940a 100644 --- a/lisp/emacs-lisp/derived.el +++ b/lisp/emacs-lisp/derived.el @@ -133,10 +133,10 @@ BODY can start with a bunch of keyword arguments. The following keyword Declare the customization group that corresponds to this mode. The command `customize-mode' uses this. :syntax-table TABLE - Use TABLE instead of the default. + Use TABLE instead of the default (CHILD-syntax-table). A nil value means to simply use the same syntax-table as the parent. :abbrev-table TABLE - Use TABLE instead of the default. + Use TABLE instead of the default (CHILD-abbrev-table). A nil value means to simply use the same abbrev-table as the parent. Here is how you could define LaTeX-Thesis mode as a variant of LaTeX mode: |