mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 07:11:34 -08:00
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-673 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-674 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-675 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-676 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-677 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-678 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-679 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-680 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-681 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-682 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-683 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-684 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-685 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-686 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-687 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-688 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-689 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-690 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-691 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-692 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-693 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-69 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-70 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-71 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-267
This commit is contained in:
commit
e417405015
106 changed files with 3851 additions and 1901 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2004-11-08 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* syntax.texi (Syntax Table Functions): Add syntax-after.
|
||||
|
||||
2004-11-06 Lars Brinkhoff <lars@nocrew.org>
|
||||
|
||||
* os.texi (Processor Run Time): New section documenting
|
||||
|
|
|
|||
|
|
@ -501,6 +501,18 @@ We use @code{string} to make it easier to see the character returned by
|
|||
@code{char-syntax}.
|
||||
@end defun
|
||||
|
||||
@defun syntax-after pos
|
||||
This function returns a description of the syntax of the character in
|
||||
the buffer after position @var{pos}, taking account of syntax
|
||||
properties as well as the syntax table.
|
||||
|
||||
The value is usually a syntax class character; however, if the buffer
|
||||
character has parenthesis syntax, the value is a cons cell of the form
|
||||
@code{(@var{class} . @var{match})}, where @var{class} is the syntax
|
||||
class character and @var{match} is the buffer character's matching
|
||||
parenthesis.
|
||||
@end defun
|
||||
|
||||
@defun set-syntax-table table
|
||||
This function makes @var{table} the syntax table for the current buffer.
|
||||
It returns @var{table}.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue