diff options
| author | Richard M. Stallman | 2002-09-19 01:03:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-09-19 01:03:43 +0000 |
| commit | 8421685fdfa899a016d9878fdc2dca47cce337d4 (patch) | |
| tree | 630077985f71e5115ae44bd20010b501c3beb33a /lisp | |
| parent | a6b194caa85681196684f092d779590ff005afb8 (diff) | |
| download | emacs-8421685fdfa899a016d9878fdc2dca47cce337d4.tar.gz emacs-8421685fdfa899a016d9878fdc2dca47cce337d4.zip | |
(dired-mark-pop-up): Doc fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/dired.el | 12 |
2 files changed, 14 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6e36e788d6a..c49a5fbfcf8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2002-09-18 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * dired.el (dired-mark-pop-up): Doc fix. | ||
| 4 | |||
| 5 | * ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs): Put the | ||
| 6 | definition straight into loaddefs.el as well as executing it here. | ||
| 7 | |||
| 1 | 2002-09-18 Colin Walters <walters@debian.org> | 8 | 2002-09-18 Colin Walters <walters@debian.org> |
| 2 | 9 | ||
| 3 | * calc/calc.el (calc-mode): Add font-lock-defontify to | 10 | * calc/calc.el (calc-mode): Add font-lock-defontify to |
diff --git a/lisp/dired.el b/lisp/dired.el index f8d5fc03883..de414e0fdc5 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -2248,11 +2248,13 @@ Command symbols are `byte-compile', `chgrp', `chmod', `chown', `compress', | |||
| 2248 | `uncompress'.") | 2248 | `uncompress'.") |
| 2249 | 2249 | ||
| 2250 | (defun dired-mark-pop-up (bufname op-symbol files function &rest args) | 2250 | (defun dired-mark-pop-up (bufname op-symbol files function &rest args) |
| 2251 | "Return FUNCTION's result on ARGS after popping up a window | 2251 | "Return FUNCTION's result on ARGS after showing which files are marked. |
| 2252 | \(in a buffer named BUFNAME, nil gives \" *Marked Files*\") showing the marked | 2252 | Displays the file names in a buffer named BUFNAME; |
| 2253 | files. Uses function `dired-pop-to-buffer' to do that. | 2253 | nil gives \" *Marked Files*\". |
| 2254 | FUNCTION should not manipulate files. | 2254 | This uses function `dired-pop-to-buffer' to do that. |
| 2255 | It should only read input (an argument or confirmation). | 2255 | |
| 2256 | FUNCTION should not manipulate files, just read input | ||
| 2257 | (an argument or confirmation). | ||
| 2256 | The window is not shown if there is just one file or | 2258 | The window is not shown if there is just one file or |
| 2257 | OP-SYMBOL is a member of the list in `dired-no-confirm'. | 2259 | OP-SYMBOL is a member of the list in `dired-no-confirm'. |
| 2258 | FILES is the list of marked files." | 2260 | FILES is the list of marked files." |