diff options
| author | Richard M. Stallman | 1993-07-22 07:17:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-22 07:17:28 +0000 |
| commit | fba985162a1c261eaaf05cc0e199d12af397be97 (patch) | |
| tree | c88ba8c5e75b6a9ec934ab947bcfc99dc5e6f4ac | |
| parent | 367ee8f4d046adfaf5a580f0c988550e5ccb6253 (diff) | |
| download | emacs-fba985162a1c261eaaf05cc0e199d12af397be97.tar.gz emacs-fba985162a1c261eaaf05cc0e199d12af397be97.zip | |
(map-y-or-n-p): If LIST is nil, just return.
| -rw-r--r-- | lisp/map-ynp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index 28491b5626b..a0badd5ed3a 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el | |||
| @@ -89,7 +89,7 @@ Returns the number of actions taken." | |||
| 89 | query-replace-map))) | 89 | query-replace-map))) |
| 90 | (actions 0) | 90 | (actions 0) |
| 91 | prompt char elt tail def delayed-switch-frame | 91 | prompt char elt tail def delayed-switch-frame |
| 92 | (next (if (or (symbolp list) | 92 | (next (if (or (and list (symbolp list)) |
| 93 | (subrp list) | 93 | (subrp list) |
| 94 | (byte-code-function-p list) | 94 | (byte-code-function-p list) |
| 95 | (and (consp list) | 95 | (and (consp list) |