diff options
| author | Richard M. Stallman | 1993-11-09 21:37:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-09 21:37:50 +0000 |
| commit | 4c39085081f7555b3ee49b2ae5db11b9d01d4c21 (patch) | |
| tree | bb71270bc1d5720f03276c1640f4133e19076803 /src | |
| parent | 2950a20e83bd4ddd747b7bccc70a241b5556b8b9 (diff) | |
| download | emacs-4c39085081f7555b3ee49b2ae5db11b9d01d4c21.tar.gz emacs-4c39085081f7555b3ee49b2ae5db11b9d01d4c21.zip | |
Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 12 |
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 | ||
| 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; |
| @@ -370,7 +370,7 @@ This is 1, unless a clipping restriction is in effect.") | |||
| 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); |
| @@ -378,8 +378,8 @@ This is the beginning, unless a clipping restriction is in effect.") | |||
| 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; |
| @@ -389,8 +389,8 @@ in which case it is less.") | |||
| 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); |