aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/dired.el12
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 @@
12002-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
12002-09-18 Colin Walters <walters@debian.org> 82002-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 2252Displays the file names in a buffer named BUFNAME;
2253files. Uses function `dired-pop-to-buffer' to do that. 2253 nil gives \" *Marked Files*\".
2254 FUNCTION should not manipulate files. 2254This uses function `dired-pop-to-buffer' to do that.
2255 It should only read input (an argument or confirmation). 2255
2256FUNCTION should not manipulate files, just read input
2257 (an argument or confirmation).
2256The window is not shown if there is just one file or 2258The 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'.
2258FILES is the list of marked files." 2260FILES is the list of marked files."