diff options
| author | Karl Heuer | 1995-04-07 23:10:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-04-07 23:10:25 +0000 |
| commit | fb7756026a303066156e602727ea8d233e50f966 (patch) | |
| tree | 34e405d20ba19c6b5fdd85717deae1e3bc3417ed /src | |
| parent | 3d4be9d662c17f2ea1f2f219426057078bfd862f (diff) | |
| download | emacs-fb7756026a303066156e602727ea8d233e50f966.tar.gz emacs-fb7756026a303066156e602727ea8d233e50f966.zip | |
(Fcall_interactively): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 724e37f6b38..11c18b3f97f 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -370,7 +370,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") | |||
| 370 | /* Note that `+' is reserved for user extensions. */ | 370 | /* Note that `+' is reserved for user extensions. */ |
| 371 | while (1) | 371 | while (1) |
| 372 | { | 372 | { |
| 373 | if (*string = '+') | 373 | if (*string == '+') |
| 374 | error ("`+' is not used in `interactive' for ordinary commands"); | 374 | error ("`+' is not used in `interactive' for ordinary commands"); |
| 375 | else if (*string == '*') | 375 | else if (*string == '*') |
| 376 | { | 376 | { |