diff options
| author | Richard M. Stallman | 2001-12-03 00:08:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-12-03 00:08:00 +0000 |
| commit | e7c210cc76b57b31fbcdfae688908d1df0bedbd5 (patch) | |
| tree | f5851178299596792eb1f3021957a8f0a7aea200 | |
| parent | ebad92dc85ed65fbb902562282faeeefad4f32b1 (diff) | |
| download | emacs-e7c210cc76b57b31fbcdfae688908d1df0bedbd5.tar.gz emacs-e7c210cc76b57b31fbcdfae688908d1df0bedbd5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | man/mark.texi | 25 |
2 files changed, 17 insertions, 13 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af03effadf0..334e72a230a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-12-02 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * files.el (insert-directory): If the df output does not look right, | ||
| 4 | don't try to use it. Other cleanups in overall code structure. | ||
| 5 | |||
| 1 | 2001-12-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 6 | 2001-12-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 7 | ||
| 3 | * textmodes/reftex-index.el (reftex-index-mode): Remove | 8 | * textmodes/reftex-index.el (reftex-index-mode): Remove |
diff --git a/man/mark.texi b/man/mark.texi index ad57c95958c..7cdc5a24fc8 100644 --- a/man/mark.texi +++ b/man/mark.texi | |||
| @@ -288,22 +288,21 @@ the beginning of the paragraph that surrounds or follows point, and | |||
| 288 | puts the mark at the end of that paragraph (@pxref{Paragraphs}). It | 288 | puts the mark at the end of that paragraph (@pxref{Paragraphs}). It |
| 289 | prepares the region so you can indent, case-convert, or kill a whole | 289 | prepares the region so you can indent, case-convert, or kill a whole |
| 290 | paragraph. With prefix argument, if the argument's value is positive, | 290 | paragraph. With prefix argument, if the argument's value is positive, |
| 291 | @kbd{M-h} marks that many paragraphs, the paragraph surrounding point | 291 | @kbd{M-h} marks that many paragraphs starting with the one surrounding |
| 292 | plus some following paragraphs. If the prefix argument is negative, | 292 | point. If the prefix argument is @minus{}@var{n}, @kbd{M-h} also |
| 293 | @kbd{M-h} also marks that many paragraphs, but the preceding ones | 293 | marks @var{n} paragraphs, running back form the one surrounding point. |
| 294 | instead of the following. (With a positive argument, point is put | 294 | In that last case, point moves forward to the end of that paragraph, |
| 295 | at the beginning and mark at end, with a negative argument, point is | 295 | and the mark goes at the start of the region. |
| 296 | at end and mark at the beginning.) | ||
| 297 | 296 | ||
| 298 | @kbd{C-M-h} (@code{mark-defun}) similarly puts point before, and the | 297 | @kbd{C-M-h} (@code{mark-defun}) similarly puts point before, and the |
| 299 | mark after, the current (or following) major top-level definition, or | 298 | mark after, the current (or following) major top-level definition, or |
| 300 | defun (@pxref{Moving by Defuns}). @kbd{C-x C-p} (@code{mark-page}) | 299 | defun (@pxref{Moving by Defuns}). (Currently it only marks one |
| 301 | puts point before the current page, and mark at the end | 300 | defun.) @kbd{C-x C-p} (@code{mark-page}) puts point before the |
| 302 | (@pxref{Pages}). The mark goes after the terminating page delimiter | 301 | current page, and mark at the end (@pxref{Pages}). The mark goes |
| 303 | (to include it in the region), while point goes after the preceding | 302 | after the terminating page delimiter (to include it in the region), |
| 304 | page delimiter (to exclude it). A numeric argument specifies a later | 303 | while point goes after the preceding page delimiter (to exclude it). |
| 305 | page (if positive) or an earlier page (if negative) instead of the | 304 | A numeric argument specifies a later page (if positive) or an earlier |
| 306 | current page. | 305 | page (if negative) instead of the current page. |
| 307 | 306 | ||
| 308 | Finally, @kbd{C-x h} (@code{mark-whole-buffer}) sets up the entire | 307 | Finally, @kbd{C-x h} (@code{mark-whole-buffer}) sets up the entire |
| 309 | buffer as the region, by putting point at the beginning and the mark at | 308 | buffer as the region, by putting point at the beginning and the mark at |