diff options
| author | Chong Yidong | 2006-07-26 18:15:08 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-07-26 18:15:08 +0000 |
| commit | 43811b4e749b1235183a3188f8af92a77da80665 (patch) | |
| tree | 28e19115898578a5936f2a2e30586bbd2e050042 /src | |
| parent | 4392dfe315bbfb6025bbca707c5a025def1bcc36 (diff) | |
| download | emacs-43811b4e749b1235183a3188f8af92a77da80665.tar.gz emacs-43811b4e749b1235183a3188f8af92a77da80665.zip | |
Change callers of read_char.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/callint.c b/src/callint.c index 475042abbe1..4c8a5718cd9 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -563,7 +563,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) | |||
| 563 | break; | 563 | break; |
| 564 | 564 | ||
| 565 | case 'c': /* Character */ | 565 | case 'c': /* Character */ |
| 566 | args[i] = Fread_char (build_string (callint_message), Qnil); | 566 | args[i] = Fread_char (build_string (callint_message), Qnil, Qnil); |
| 567 | message1_nolog ((char *) 0); | 567 | message1_nolog ((char *) 0); |
| 568 | /* Passing args[i] directly stimulates compiler bug */ | 568 | /* Passing args[i] directly stimulates compiler bug */ |
| 569 | teml = args[i]; | 569 | teml = args[i]; |
| @@ -635,7 +635,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) | |||
| 635 | /* Ignore first element, which is the base key. */ | 635 | /* Ignore first element, which is the base key. */ |
| 636 | tem2 = Fmemq (intern ("down"), Fcdr (teml)); | 636 | tem2 = Fmemq (intern ("down"), Fcdr (teml)); |
| 637 | if (! NILP (tem2)) | 637 | if (! NILP (tem2)) |
| 638 | up_event = Fread_event (Qnil, Qnil); | 638 | up_event = Fread_event (Qnil, Qnil, Qnil); |
| 639 | } | 639 | } |
| 640 | } | 640 | } |
| 641 | break; | 641 | break; |
| @@ -663,7 +663,7 @@ If KEYS is omitted or nil, the return value of `this-command-keys' is used. */) | |||
| 663 | /* Ignore first element, which is the base key. */ | 663 | /* Ignore first element, which is the base key. */ |
| 664 | tem2 = Fmemq (intern ("down"), Fcdr (teml)); | 664 | tem2 = Fmemq (intern ("down"), Fcdr (teml)); |
| 665 | if (! NILP (tem2)) | 665 | if (! NILP (tem2)) |
| 666 | up_event = Fread_event (Qnil, Qnil); | 666 | up_event = Fread_event (Qnil, Qnil, Qnil); |
| 667 | } | 667 | } |
| 668 | } | 668 | } |
| 669 | break; | 669 | break; |