diff options
author | Kenichi Handa <handa@m17n.org> | 1998-09-22 10:23:40 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-09-22 10:23:40 +0000 |
commit | 24819c4351e21c9a52e15132180707f8543b54c1 (patch) | |
tree | 816c0eea3e68bad25f9884f7ad7478d9b9f583ca /src/callint.c | |
parent | 8a3c3130f2668146628f8d93fcb87f06821397a3 (diff) | |
download | emacs-24819c4351e21c9a52e15132180707f8543b54c1.tar.gz |
(Fcall_interactively): Don't use input method when
reading a character in the case of `c' code letter.
Diffstat (limited to 'src/callint.c')
-rw-r--r-- | src/callint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c index 59b207c3a1d..55a1b678bf8 100644 --- a/src/callint.c +++ b/src/callint.c @@ -85,7 +85,7 @@ Just `(interactive)' means pass no args when calling interactively.\n\ a -- Function name: symbol with a function definition.\n\ b -- Name of existing buffer.\n\ B -- Name of buffer, possibly nonexistent.\n\ -c -- Character.\n\ +c -- Character (no input method is used).\n\ C -- Command name: symbol with interactive function definition.\n\ d -- Value of point as number. Does not do I/O.\n\ D -- Directory name.\n\ @@ -498,7 +498,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") break; case 'c': /* Character */ - args[i] = Fread_char (build_string (callint_message), Qnil); + args[i] = Fread_char (build_string (callint_message), Qt); message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; |