diff options
| author | Stefan Monnier | 2000-09-29 01:00:18 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-09-29 01:00:18 +0000 |
| commit | 4f837d3b58c504d033e65670e3a76004fb2f57c2 (patch) | |
| tree | c285af8789c2cc076a5a6cb74cf9235adcff8329 | |
| parent | 5979523a640dfccbc67bf59aee7b4fa07f4d9650 (diff) | |
| download | emacs-4f837d3b58c504d033e65670e3a76004fb2f57c2.tar.gz emacs-4f837d3b58c504d033e65670e3a76004fb2f57c2.zip | |
(map-y-or-n-p): Fix missing backquotes.
| -rw-r--r-- | lisp/map-ynp.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index d23c31ac4b4..e986ae87359 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el | |||
| @@ -112,7 +112,7 @@ Returns the number of actions taken." | |||
| 112 | (vector (nth 1 elt)))) | 112 | (vector (nth 1 elt)))) |
| 113 | action-alist)) | 113 | action-alist)) |
| 114 | use-menus t | 114 | use-menus t |
| 115 | mouse-event last-nonmenu-event)) | 115 | mouse-event last-nonmenu-event)) |
| 116 | (setq user-keys (if action-alist | 116 | (setq user-keys (if action-alist |
| 117 | (concat (mapconcat (function | 117 | (concat (mapconcat (function |
| 118 | (lambda (elt) | 118 | (lambda (elt) |
| @@ -220,7 +220,7 @@ the current %s and exit." | |||
| 220 | (set-buffer standard-output) | 220 | (set-buffer standard-output) |
| 221 | (help-mode))) | 221 | (help-mode))) |
| 222 | 222 | ||
| 223 | (setq next (lambda () | 223 | (setq next `(lambda () |
| 224 | (setq next ',next) | 224 | (setq next ',next) |
| 225 | ',elt))) | 225 | ',elt))) |
| 226 | ((vectorp def) | 226 | ((vectorp def) |
| @@ -229,14 +229,14 @@ the current %s and exit." | |||
| 229 | ;; The function has eaten this object. | 229 | ;; The function has eaten this object. |
| 230 | (setq actions (1+ actions)) | 230 | (setq actions (1+ actions)) |
| 231 | ;; Regurgitated; try again. | 231 | ;; Regurgitated; try again. |
| 232 | (setq next (lambda () | 232 | (setq next `(lambda () |
| 233 | (setq next ',next) | 233 | (setq next ',next) |
| 234 | ',elt)))) | 234 | ',elt)))) |
| 235 | ((and (consp char) | 235 | ((and (consp char) |
| 236 | (eq (car char) 'switch-frame)) | 236 | (eq (car char) 'switch-frame)) |
| 237 | ;; switch-frame event. Put it off until we're done. | 237 | ;; switch-frame event. Put it off until we're done. |
| 238 | (setq delayed-switch-frame char) | 238 | (setq delayed-switch-frame char) |
| 239 | (setq next (lambda () | 239 | (setq next `(lambda () |
| 240 | (setq next ',next) | 240 | (setq next ',next) |
| 241 | ',elt))) | 241 | ',elt))) |
| 242 | (t | 242 | (t |
| @@ -245,7 +245,7 @@ the current %s and exit." | |||
| 245 | (key-description (vector help-char))) | 245 | (key-description (vector help-char))) |
| 246 | (beep) | 246 | (beep) |
| 247 | (sit-for 1) | 247 | (sit-for 1) |
| 248 | (setq next (lambda () | 248 | (setq next `(lambda () |
| 249 | (setq next ',next) | 249 | (setq next ',next) |
| 250 | ',elt))))) | 250 | ',elt))))) |
| 251 | (prompt | 251 | (prompt |