diff options
| author | Kenichi Handa | 1998-12-22 06:06:48 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-12-22 06:06:48 +0000 |
| commit | 562e4a4f611ae9d495f94a92043ee840a2bb80f3 (patch) | |
| tree | 9e281015ac7d5da47b115a296d0d38fe45b13633 | |
| parent | fc351d2f65a539eb1f061ad1e9e104c67b822651 (diff) | |
| download | emacs-562e4a4f611ae9d495f94a92043ee840a2bb80f3.tar.gz emacs-562e4a4f611ae9d495f94a92043ee840a2bb80f3.zip | |
(Fcall_interactively) <'C'>: Give Fread_char Qnil
because of the change of the second argument of Fread_char.
| -rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 55a1b678bf8..e59fd3e8530 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -498,7 +498,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") | |||
| 498 | break; | 498 | break; |
| 499 | 499 | ||
| 500 | case 'c': /* Character */ | 500 | case 'c': /* Character */ |
| 501 | args[i] = Fread_char (build_string (callint_message), Qt); | 501 | args[i] = Fread_char (build_string (callint_message), Qnil); |
| 502 | message1_nolog ((char *) 0); | 502 | message1_nolog ((char *) 0); |
| 503 | /* Passing args[i] directly stimulates compiler bug */ | 503 | /* Passing args[i] directly stimulates compiler bug */ |
| 504 | teml = args[i]; | 504 | teml = args[i]; |