diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-12-19 23:20:14 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-12-19 23:20:14 +0000 |
commit | 3d36ae7924340a2e60e9287a41620a0a9f5e9c58 (patch) | |
tree | 22ffd6bc86d5cec9c78c0e60e62c3e27d0ed77ed | |
parent | be9c9571d4ad212997b3ac6f346d2ba61efcc56f (diff) | |
download | emacs-3d36ae7924340a2e60e9287a41620a0a9f5e9c58.tar.gz |
(Fcall_interactively): Don't log prompt strings.
-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 3dbca425c1c..c8117d169d2 100644 --- a/src/callint.c +++ b/src/callint.c @@ -479,9 +479,9 @@ Otherwise, this is done only if an arg is read using the minibuffer.") break; case 'c': /* Character */ - message1 (callint_message); + message1_nolog (callint_message); args[i] = Fread_char (); - message1 ((char *) 0); + message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; visargs[i] = Fchar_to_string (teml); |