comparison lisp/map-ynp.el @ 23254:54fc6491e28b

(map-y-or-n-p): Mention RET, `q' in the help text.
author Dave Love <fx@gnu.org>
date Mon, 14 Sep 1998 17:14:40 +0000
parents 9b9c929675eb
children ab252c25faf9
comparison
equal deleted inserted replaced
23253:0d6c3732f9d2 23254:54fc6491e28b
193 (objects (if help (nth 1 help) "objects")) 193 (objects (if help (nth 1 help) "objects"))
194 (action (if help (nth 2 help) "act on"))) 194 (action (if help (nth 2 help) "act on")))
195 (concat 195 (concat
196 (format "Type SPC or `y' to %s the current %s; 196 (format "Type SPC or `y' to %s the current %s;
197 DEL or `n' to skip the current %s; 197 DEL or `n' to skip the current %s;
198 RET or `q' to exit (skip all remaining %s);
198 ! to %s all remaining %s; 199 ! to %s all remaining %s;
199 ESC or `q' to exit;\n" 200 ESC or `q' to exit;\n"
200 action object object action objects) 201 action object object objects action
202 objects)
201 (mapconcat (function 203 (mapconcat (function
202 (lambda (elt) 204 (lambda (elt)
203 (format "%c to %s" 205 (format "%c to %s"
204 (nth 0 elt) 206 (nth 0 elt)
205 (nth 2 elt)))) 207 (nth 2 elt))))