diff options
| author | Karl Heuer | 1995-12-19 23:20:14 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-12-19 23:20:14 +0000 |
| commit | 453ed650c80c7fe692b3ff0ac49a7d997cdf83e7 (patch) | |
| tree | fd9c4b6728665b8a44a17e27eded676c02792abd | |
| parent | 6f579a691abe231458ccc00f4f3f514758d2c621 (diff) | |
| download | emacs-453ed650c80c7fe692b3ff0ac49a7d997cdf83e7.tar.gz emacs-453ed650c80c7fe692b3ff0ac49a7d997cdf83e7.zip | |
(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.") | |||
| 479 | break; | 479 | break; |
| 480 | 480 | ||
| 481 | case 'c': /* Character */ | 481 | case 'c': /* Character */ |
| 482 | message1 (callint_message); | 482 | message1_nolog (callint_message); |
| 483 | args[i] = Fread_char (); | 483 | args[i] = Fread_char (); |
| 484 | message1 ((char *) 0); | 484 | message1_nolog ((char *) 0); |
| 485 | /* Passing args[i] directly stimulates compiler bug */ | 485 | /* Passing args[i] directly stimulates compiler bug */ |
| 486 | teml = args[i]; | 486 | teml = args[i]; |
| 487 | visargs[i] = Fchar_to_string (teml); | 487 | visargs[i] = Fchar_to_string (teml); |