From: Richard M. Stallman Date: Tue, 9 Nov 1993 21:37:50 +0000 (+0000) Subject: Doc fixes. X-Git-Tag: emacs-19.34~10908 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4c39085081f7555b3ee49b2ae5db11b9d01d4c21;p=emacs.git Doc fixes. --- diff --git a/src/editfns.c b/src/editfns.c index ae6fb4f685b..c091f00210f 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -360,7 +360,7 @@ DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0, DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0, "Return the minimum permissible value of point in the current buffer.\n\ -This is 1, unless a clipping restriction is in effect.") +This is 1, unless narrowing (a buffer restriction) is in effect.") () { Lisp_Object temp; @@ -370,7 +370,7 @@ This is 1, unless a clipping restriction is in effect.") DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0, "Return a marker to the minimum permissible value of point in this buffer.\n\ -This is the beginning, unless a clipping restriction is in effect.") +This is the beginning, unless narrowing (a buffer restriction) is in effect.") () { return buildmark (BEGV); @@ -378,8 +378,8 @@ This is the beginning, unless a clipping restriction is in effect.") DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0, "Return the maximum permissible value of point in the current buffer.\n\ -This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ -in which case it is less.") +This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\ +is in effect, in which case it is less.") () { Lisp_Object temp; @@ -389,8 +389,8 @@ in which case it is less.") DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0, "Return a marker to the maximum permissible value of point in this buffer.\n\ -This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ -in which case it is less.") +This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\ +is in effect, in which case it is less.") () { return buildmark (ZV);