diff options
| author | Paul Eggert | 2019-01-23 08:01:37 -0800 |
|---|---|---|
| committer | Paul Eggert | 2019-01-23 08:02:04 -0800 |
| commit | d9779c377dabcbc3a002069084d72191ce059496 (patch) | |
| tree | 3d2ea305a7dfcbaceaff21cac35eb5aef0409b4c | |
| parent | 3a0c7b1e60066a10ebe666e24e437918b971d1e2 (diff) | |
| download | emacs-d9779c377dabcbc3a002069084d72191ce059496.tar.gz emacs-d9779c377dabcbc3a002069084d72191ce059496.zip | |
* src/keyboard.c (read_char): Use CALLN.
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 838dc242dd9..b3b55e73b63 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -2919,7 +2919,7 @@ read_char (int commandflag, Lisp_Object map, | |||
| 2919 | if (! NILP (also_record)) | 2919 | if (! NILP (also_record)) |
| 2920 | record_char (also_record); | 2920 | record_char (also_record); |
| 2921 | 2921 | ||
| 2922 | Frun_hook_with_args (2, ((Lisp_Object []) {Qinput_event_functions, c})); | 2922 | CALLN (Frun_hook_with_args, Qinput_event_functions, c); |
| 2923 | 2923 | ||
| 2924 | /* Wipe the echo area. | 2924 | /* Wipe the echo area. |
| 2925 | But first, if we are about to use an input method, | 2925 | But first, if we are about to use an input method, |