diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-04-07 23:10:25 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-04-07 23:10:25 +0000 |
commit | fb7756026a303066156e602727ea8d233e50f966 (patch) | |
tree | 34e405d20ba19c6b5fdd85717deae1e3bc3417ed /src/callint.c | |
parent | 3d4be9d662c17f2ea1f2f219426057078bfd862f (diff) | |
download | emacs-fb7756026a303066156e602727ea8d233e50f966.tar.gz |
(Fcall_interactively): Fix previous change.
Diffstat (limited to 'src/callint.c')
-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.") /* Note that `+' is reserved for user extensions. */ while (1) { - if (*string = '+') + if (*string == '+') error ("`+' is not used in `interactive' for ordinary commands"); else if (*string == '*') { |