aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-09 21:37:50 +0000
committerRichard M. Stallman1993-11-09 21:37:50 +0000
commit4c39085081f7555b3ee49b2ae5db11b9d01d4c21 (patch)
treebb71270bc1d5720f03276c1640f4133e19076803 /src
parent2950a20e83bd4ddd747b7bccc70a241b5556b8b9 (diff)
downloademacs-4c39085081f7555b3ee49b2ae5db11b9d01d4c21.tar.gz
emacs-4c39085081f7555b3ee49b2ae5db11b9d01d4c21.zip
Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c12
1 files changed, 6 insertions, 6 deletions
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,
360 360
361DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0, 361DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
362 "Return the minimum permissible value of point in the current buffer.\n\ 362 "Return the minimum permissible value of point in the current buffer.\n\
363This is 1, unless a clipping restriction is in effect.") 363This is 1, unless narrowing (a buffer restriction) is in effect.")
364 () 364 ()
365{ 365{
366 Lisp_Object temp; 366 Lisp_Object temp;
@@ -370,7 +370,7 @@ This is 1, unless a clipping restriction is in effect.")
370 370
371DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0, 371DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
372 "Return a marker to the minimum permissible value of point in this buffer.\n\ 372 "Return a marker to the minimum permissible value of point in this buffer.\n\
373This is the beginning, unless a clipping restriction is in effect.") 373This is the beginning, unless narrowing (a buffer restriction) is in effect.")
374 () 374 ()
375{ 375{
376 return buildmark (BEGV); 376 return buildmark (BEGV);
@@ -378,8 +378,8 @@ This is the beginning, unless a clipping restriction is in effect.")
378 378
379DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0, 379DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
380 "Return the maximum permissible value of point in the current buffer.\n\ 380 "Return the maximum permissible value of point in the current buffer.\n\
381This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ 381This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
382in which case it is less.") 382is in effect, in which case it is less.")
383 () 383 ()
384{ 384{
385 Lisp_Object temp; 385 Lisp_Object temp;
@@ -389,8 +389,8 @@ in which case it is less.")
389 389
390DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0, 390DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
391 "Return a marker to the maximum permissible value of point in this buffer.\n\ 391 "Return a marker to the maximum permissible value of point in this buffer.\n\
392This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ 392This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
393in which case it is less.") 393is in effect, in which case it is less.")
394 () 394 ()
395{ 395{
396 return buildmark (ZV); 396 return buildmark (ZV);