comparison src/editfns.c @ 4943:7a6aea972b7e

Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Nov 1993 21:37:50 +0000
parents 350231e38e68
children ddee29e260d2
comparison
equal deleted inserted replaced
4942:0ea29f510ba0 4943:7a6aea972b7e
358 return temp; 358 return temp;
359 } 359 }
360 360
361 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0, 361 DEFUN ("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\
363 This is 1, unless a clipping restriction is in effect.") 363 This is 1, unless narrowing (a buffer restriction) is in effect.")
364 () 364 ()
365 { 365 {
366 Lisp_Object temp; 366 Lisp_Object temp;
367 XFASTINT (temp) = BEGV; 367 XFASTINT (temp) = BEGV;
368 return temp; 368 return temp;
369 } 369 }
370 370
371 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0, 371 DEFUN ("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\
373 This is the beginning, unless a clipping restriction is in effect.") 373 This is the beginning, unless narrowing (a buffer restriction) is in effect.")
374 () 374 ()
375 { 375 {
376 return buildmark (BEGV); 376 return buildmark (BEGV);
377 } 377 }
378 378
379 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0, 379 DEFUN ("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\
381 This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ 381 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
382 in which case it is less.") 382 is in effect, in which case it is less.")
383 () 383 ()
384 { 384 {
385 Lisp_Object temp; 385 Lisp_Object temp;
386 XFASTINT (temp) = ZV; 386 XFASTINT (temp) = ZV;
387 return temp; 387 return temp;
388 } 388 }
389 389
390 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0, 390 DEFUN ("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\
392 This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\ 392 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
393 in which case it is less.") 393 is in effect, in which case it is less.")
394 () 394 ()
395 { 395 {
396 return buildmark (ZV); 396 return buildmark (ZV);
397 } 397 }
398 398