diff options
| author | Stefan Monnier | 2004-11-22 13:17:56 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-11-22 13:17:56 +0000 |
| commit | 19cfd746264705ad96e2c7e31f133128abfbd494 (patch) | |
| tree | d1e9b1315e1e5107de01f0963357b4173384c6da | |
| parent | 77c99c7ff5d678d7eb2026b85a988e0a2737bdbf (diff) | |
| download | emacs-19cfd746264705ad96e2c7e31f133128abfbd494.tar.gz emacs-19cfd746264705ad96e2c7e31f133128abfbd494.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lispref/syntax.texi | 8 |
2 files changed, 1 insertions, 10 deletions
| @@ -2360,9 +2360,6 @@ NOMODIFY. If it is non-nil, it means don't mark the buffer modified. | |||
| 2360 | ** The new function syntax-after returns the syntax code | 2360 | ** The new function syntax-after returns the syntax code |
| 2361 | of the character after a specified buffer position, taking account | 2361 | of the character after a specified buffer position, taking account |
| 2362 | of text properties as well as the character code. | 2362 | of text properties as well as the character code. |
| 2363 | It returns the value compatibly with char-syntax, except | ||
| 2364 | that the value can be a list (SYNTAX . MATCHER) which says | ||
| 2365 | what the matching character is. | ||
| 2366 | 2363 | ||
| 2367 | +++ | 2364 | +++ |
| 2368 | ** The new primitive `get-internal-run-time' returns the processor | 2365 | ** The new primitive `get-internal-run-time' returns the processor |
diff --git a/lispref/syntax.texi b/lispref/syntax.texi index 57b0590d239..1dc1a2587e5 100644 --- a/lispref/syntax.texi +++ b/lispref/syntax.texi | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | @c -*-texinfo-*- | 1 | @c -*-texinfo-*- |
| 2 | @c This is part of the GNU Emacs Lisp Reference Manual. | 2 | @c This is part of the GNU Emacs Lisp Reference Manual. |
| 3 | @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999 | 3 | @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2004 |
| 4 | @c Free Software Foundation, Inc. | 4 | @c Free Software Foundation, Inc. |
| 5 | @c See the file elisp.texi for copying conditions. | 5 | @c See the file elisp.texi for copying conditions. |
| 6 | @setfilename ../info/syntax | 6 | @setfilename ../info/syntax |
| @@ -505,12 +505,6 @@ We use @code{string} to make it easier to see the character returned by | |||
| 505 | This function returns a description of the syntax of the character in | 505 | This function returns a description of the syntax of the character in |
| 506 | the buffer after position @var{pos}, taking account of syntax | 506 | the buffer after position @var{pos}, taking account of syntax |
| 507 | properties as well as the syntax table. | 507 | properties as well as the syntax table. |
| 508 | |||
| 509 | The value is usually a syntax class character; however, if the buffer | ||
| 510 | character has parenthesis syntax, the value is a cons cell of the form | ||
| 511 | @code{(@var{class} . @var{match})}, where @var{class} is the syntax | ||
| 512 | class character and @var{match} is the buffer character's matching | ||
| 513 | parenthesis. | ||
| 514 | @end defun | 508 | @end defun |
| 515 | 509 | ||
| 516 | @defun set-syntax-table table | 510 | @defun set-syntax-table table |