summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-04-07 23:10:25 +0000
committerKarl Heuer <kwzh@gnu.org>1995-04-07 23:10:25 +0000
commitffa4489f0f76a577230b15ed45f6b9461c41be22 (patch)
tree806eb2b5495de8b2327545e0b88bdeb22f6d3eed /src/callint.c
parent9102e54eecb47b56c9cc81b1b451431fb57a487c (diff)
downloademacs-ffa4489f0f76a577230b15ed45f6b9461c41be22.tar.gz
(Fcall_interactively): Fix previous change.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
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 == '*')
{