]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert part of previous doc fix
authorStefan Kangas <stefan@marxist.se>
Sat, 25 Sep 2021 19:25:58 +0000 (21:25 +0200)
committerStefan Kangas <stefan@marxist.se>
Sat, 25 Sep 2021 19:27:11 +0000 (21:27 +0200)
* lisp/emacs-lisp/derived.el (define-derived-mode): Revert part of
previous doc fix.  This change made the text confusing.  (Bug#17567)

lisp/emacs-lisp/derived.el

index 9557f3a4634aa46bbe5cdc5cbd919f033d1d35f3..5aa745262ade120b28be144527281e089e617b2c 100644 (file)
@@ -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.