diff options
| author | Chong Yidong | 2012-09-07 12:51:26 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-09-07 12:51:26 +0800 |
| commit | 52404181acc9d4c31eb0d1cf35db7d10e3a4afde (patch) | |
| tree | d9c98942f8ea8af92cd0bb62e3efc966d0507d95 /doc | |
| parent | d81ceaaf7e3d85dc31a67b4b40a557b56901cde8 (diff) | |
| download | emacs-52404181acc9d4c31eb0d1cf35db7d10e3a4afde.tar.gz emacs-52404181acc9d4c31eb0d1cf35db7d10e3a4afde.zip | |
Add a couple of xrefs to the Lisp manual.
* markers.texi (Moving Markers): Add xref to Point.
* syntax.texi (Low-Level Parsing): Add xref to Parser State.
Fixes: debbugs:12269
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 7 | ||||
| -rw-r--r-- | doc/lispref/markers.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/syntax.texi | 3 |
3 files changed, 13 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 50f9853b7eb..bd21100dd4c 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2012-09-07 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * markers.texi (Moving Markers): Add xref to Point (Bug#7151). | ||
| 4 | |||
| 5 | * syntax.texi (Low-Level Parsing): Add xref to Parser State | ||
| 6 | (Bug#12269). | ||
| 7 | |||
| 1 | 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org> | 8 | 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 9 | ||
| 3 | * debugging.texi (Explicit Debug): Document `debug-on-message'. | 10 | * debugging.texi (Explicit Debug): Document `debug-on-message'. |
diff --git a/doc/lispref/markers.texi b/doc/lispref/markers.texi index 22e806defec..80136f2e6f4 100644 --- a/doc/lispref/markers.texi +++ b/doc/lispref/markers.texi | |||
| @@ -355,9 +355,9 @@ the current buffer. | |||
| 355 | 355 | ||
| 356 | If @var{position} is less than 1, @code{set-marker} moves @var{marker} | 356 | If @var{position} is less than 1, @code{set-marker} moves @var{marker} |
| 357 | to the beginning of the buffer. If @var{position} is greater than the | 357 | to the beginning of the buffer. If @var{position} is greater than the |
| 358 | size of the buffer, @code{set-marker} moves marker to the end of the | 358 | size of the buffer (@pxref{Point}), @code{set-marker} moves marker to |
| 359 | buffer. If @var{position} is @code{nil} or a marker that points | 359 | the end of the buffer. If @var{position} is @code{nil} or a marker |
| 360 | nowhere, then @var{marker} is set to point nowhere. | 360 | that points nowhere, then @var{marker} is set to point nowhere. |
| 361 | 361 | ||
| 362 | The value returned is @var{marker}. | 362 | The value returned is @var{marker}. |
| 363 | 363 | ||
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index ab685290901..91ae4359af7 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -878,6 +878,9 @@ This function parses a sexp in the current buffer starting at | |||
| 878 | @var{start}, not scanning past @var{limit}. It stops at position | 878 | @var{start}, not scanning past @var{limit}. It stops at position |
| 879 | @var{limit} or when certain criteria described below are met, and sets | 879 | @var{limit} or when certain criteria described below are met, and sets |
| 880 | point to the location where parsing stops. It returns a parser state | 880 | point to the location where parsing stops. It returns a parser state |
| 881 | @ifinfo | ||
| 882 | (@pxref{Parser State}) | ||
| 883 | @end ifinfo | ||
| 881 | describing the status of the parse at the point where it stops. | 884 | describing the status of the parse at the point where it stops. |
| 882 | 885 | ||
| 883 | @cindex parenthesis depth | 886 | @cindex parenthesis depth |