]> code.delx.au - gnu-emacs/commitdiff
* lisp/emacs-lisp/derived.el (define-derived-mode): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Thu, 25 Aug 2011 05:37:55 +0000 (22:37 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 25 Aug 2011 05:37:55 +0000 (22:37 -0700)
lisp/ChangeLog
lisp/emacs-lisp/derived.el

index 91078ce324625f7088a4267f8ca25790d295da3e..9533d43f5727d7e57f183375e12e29b18082da33 100644 (file)
@@ -4,6 +4,8 @@
 
 2011-08-25  Glenn Morris  <rgm@gnu.org>
 
+       * emacs-lisp/derived.el (define-derived-mode): Doc fix.
+
        * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
        (smtpmail-via-smtp): Handle nil response from smtp.
 
index 4fda2bf1d529059129f850877a29008dd0a0b99d..81932f9940a5f23cf84d7cb709e89169e38050d3 100644 (file)
@@ -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: