Mercurial > emacs
changeset 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 | 2022b73901cb |
children | 8ccc946e6318 |
files | lispref/modes.texi |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/modes.texi Wed May 18 16:47:48 2005 +0000 +++ b/lispref/modes.texi Wed May 18 16:50:23 2005 +0000 @@ -1001,7 +1001,7 @@ @code{:syntax-table} keyword (see below). @code{define-derived-mode} makes the parent mode's syntax-table the parent of @code{@var{variant}-syntax-table}, unless the latter is already set -and already has a parent different from @code{standard-syntax-table}. +and already has a parent different from the standard syntax table. @item The new mode has its own abbrev table, kept in the variable @@ -1039,7 +1039,7 @@ @item :syntax-table You can use this to explicitly specify a syntax table for the new mode. If you specify a @code{nil} value, the new mode uses the same -syntax table as @var{parent}, or @code{standard-syntax-table} if +syntax table as @var{parent}, or the standard syntax table if @var{parent} is @code{nil}. (Note that this does @emph{not} follow the convention used for non-keyword arguments that a @code{nil} value is equivalent with not specifying the argument.)