diff options
| author | Eli Zaretskii | 2001-05-03 07:51:23 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-05-03 07:51:23 +0000 |
| commit | a1af8dcf17517e1016f8245c658046f9be4a16bf (patch) | |
| tree | 1aec94807d30f333a9baca9d94dcf8d2e5a4945a | |
| parent | ddfb4005866a4695de02147bc9309c863c2c171e (diff) | |
| download | emacs-a1af8dcf17517e1016f8245c658046f9be4a16bf.tar.gz emacs-a1af8dcf17517e1016f8245c658046f9be4a16bf.zip | |
(dired-diff): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/dired-aux.el | 3 | ||||
| -rw-r--r-- | lisp/dired.el | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8052faab73e..cc3c9c04522 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * dired-aux.el (dired-diff): Doc fix. | ||
| 4 | |||
| 5 | * dired.el (dired-diff): Likewise. | ||
| 6 | |||
| 7 | 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 8 | |||
| 3 | * textmodes/ispell.el (ispell-change-dictionary): Doc fix. | 9 | * textmodes/ispell.el (ispell-change-dictionary): Doc fix. |
| 4 | 10 | ||
| 5 | 2001-05-02 Stefan Monnier <monnier@cs.yale.edu> | 11 | 2001-05-02 Stefan Monnier <monnier@cs.yale.edu> |
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 6651f9c832a..31883fe012a 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -44,7 +44,8 @@ | |||
| 44 | ;;;###autoload | 44 | ;;;###autoload |
| 45 | (defun dired-diff (file &optional switches) | 45 | (defun dired-diff (file &optional switches) |
| 46 | "Compare file at point with file FILE using `diff'. | 46 | "Compare file at point with file FILE using `diff'. |
| 47 | FILE defaults to the file at the mark. | 47 | FILE defaults to the file at the mark. (That's the mark set by |
| 48 | \\[set-mark-command], not by Dired's \\[dired-mark] command.) | ||
| 48 | The prompted-for file is the first file given to `diff'. | 49 | The prompted-for file is the first file given to `diff'. |
| 49 | With prefix arg, prompt for second argument SWITCHES, | 50 | With prefix arg, prompt for second argument SWITCHES, |
| 50 | which is options for `diff'." | 51 | which is options for `diff'." |
diff --git a/lisp/dired.el b/lisp/dired.el index 6ef7990084d..a425cf384f3 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -2716,7 +2716,8 @@ To be called first in body of `dired-sort-other', etc." | |||
| 2716 | 2716 | ||
| 2717 | (autoload 'dired-diff "dired-aux" | 2717 | (autoload 'dired-diff "dired-aux" |
| 2718 | "Compare file at point with file FILE using `diff'. | 2718 | "Compare file at point with file FILE using `diff'. |
| 2719 | FILE defaults to the file at the mark. | 2719 | FILE defaults to the file at the mark. (That's the mark set by |
| 2720 | \\[set-mark-command], not by Dired's \\[dired-mark] command.) | ||
| 2720 | The prompted-for file is the first file given to `diff'." | 2721 | The prompted-for file is the first file given to `diff'." |
| 2721 | t) | 2722 | t) |
| 2722 | 2723 | ||