]> git.eshelyaron.com Git - emacs.git/commitdiff
Add a couple of xrefs to the Lisp manual.
authorChong Yidong <cyd@gnu.org>
Fri, 7 Sep 2012 04:51:26 +0000 (12:51 +0800)
committerChong Yidong <cyd@gnu.org>
Fri, 7 Sep 2012 04:51:26 +0000 (12:51 +0800)
* markers.texi (Moving Markers): Add xref to Point.

* syntax.texi (Low-Level Parsing): Add xref to Parser State.

Fixes: debbugs:12269
doc/lispref/ChangeLog
doc/lispref/markers.texi
doc/lispref/syntax.texi

index 50f9853b7eb338a0a1fdba6fcfe12bfd2229bd4c..bd21100dd4c571945d91f12cd37aa29e26186370 100644 (file)
@@ -1,3 +1,10 @@
+2012-09-07  Chong Yidong  <cyd@gnu.org>
+
+       * markers.texi (Moving Markers): Add xref to Point (Bug#7151).
+
+       * syntax.texi (Low-Level Parsing): Add xref to Parser State
+       (Bug#12269).
+
 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
 
        * debugging.texi (Explicit Debug): Document `debug-on-message'.
index 22e806defec9548762fc27abc84ac83a7ca87d88..80136f2e6f42e4a10986471ac4c4f08914834922 100644 (file)
@@ -355,9 +355,9 @@ the current buffer.
 
 If @var{position} is less than 1, @code{set-marker} moves @var{marker}
 to the beginning of the buffer.  If @var{position} is greater than the
-size of the buffer, @code{set-marker} moves marker to the end of the
-buffer.  If @var{position} is @code{nil} or a marker that points
-nowhere, then @var{marker} is set to point nowhere.
+size of the buffer (@pxref{Point}), @code{set-marker} moves marker to
+the end of the buffer.  If @var{position} is @code{nil} or a marker
+that points nowhere, then @var{marker} is set to point nowhere.
 
 The value returned is @var{marker}.
 
index ab685290901c36e1ef257f38ef07cdfafa980849..91ae4359af73d63056dc38b4f3d703baec03a556 100644 (file)
@@ -878,6 +878,9 @@ This function parses a sexp in the current buffer starting at
 @var{start}, not scanning past @var{limit}.  It stops at position
 @var{limit} or when certain criteria described below are met, and sets
 point to the location where parsing stops.  It returns a parser state
+@ifinfo
+(@pxref{Parser State})
+@end ifinfo
 describing the status of the parse at the point where it stops.
 
 @cindex parenthesis depth