changeset 23301:5f08a9f278b1

(Fcall_interactively): Don't use input method when reading a character in the case of `c' code letter.
author Kenichi Handa <handa@m17n.org>
date Tue, 22 Sep 1998 10:23:40 +0000
parents 10f889f1c168
children dcff2a4b6cb4
files src/callint.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/callint.c	Tue Sep 22 08:36:11 1998 +0000
+++ b/src/callint.c	Tue Sep 22 10:23:40 1998 +0000
@@ -85,7 +85,7 @@
 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 @@
 	  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];