comparison lispref/modes.texi @ 62488:5d20851e7295

(Derived Modes): Correct references to non-existing variable standard-syntax-table.
author Luc Teirlinck <teirllm@auburn.edu>
date Wed, 18 May 2005 16:50:23 +0000
parents 893818a65dc5
children 14e404c9c65f
comparison
equal deleted inserted replaced
62487:2022b73901cb 62488:5d20851e7295
999 The new mode has its own syntax table, kept in the variable 999 The new mode has its own syntax table, kept in the variable
1000 @code{@var{variant}-syntax-table}, unless you override this using the 1000 @code{@var{variant}-syntax-table}, unless you override this using the
1001 @code{:syntax-table} keyword (see below). @code{define-derived-mode} 1001 @code{:syntax-table} keyword (see below). @code{define-derived-mode}
1002 makes the parent mode's syntax-table the parent of 1002 makes the parent mode's syntax-table the parent of
1003 @code{@var{variant}-syntax-table}, unless the latter is already set 1003 @code{@var{variant}-syntax-table}, unless the latter is already set
1004 and already has a parent different from @code{standard-syntax-table}. 1004 and already has a parent different from the standard syntax table.
1005 1005
1006 @item 1006 @item
1007 The new mode has its own abbrev table, kept in the variable 1007 The new mode has its own abbrev table, kept in the variable
1008 @code{@var{variant}-abbrev-table}, unless you override this using the 1008 @code{@var{variant}-abbrev-table}, unless you override this using the
1009 @code{:abbrev-table} keyword (see below). 1009 @code{:abbrev-table} keyword (see below).
1037 If this is specified, it is the customization group for this mode. 1037 If this is specified, it is the customization group for this mode.
1038 1038
1039 @item :syntax-table 1039 @item :syntax-table
1040 You can use this to explicitly specify a syntax table for the new 1040 You can use this to explicitly specify a syntax table for the new
1041 mode. If you specify a @code{nil} value, the new mode uses the same 1041 mode. If you specify a @code{nil} value, the new mode uses the same
1042 syntax table as @var{parent}, or @code{standard-syntax-table} if 1042 syntax table as @var{parent}, or the standard syntax table if
1043 @var{parent} is @code{nil}. (Note that this does @emph{not} follow 1043 @var{parent} is @code{nil}. (Note that this does @emph{not} follow
1044 the convention used for non-keyword arguments that a @code{nil} value 1044 the convention used for non-keyword arguments that a @code{nil} value
1045 is equivalent with not specifying the argument.) 1045 is equivalent with not specifying the argument.)
1046 1046
1047 @item :abbrev-table 1047 @item :abbrev-table