From fb7756026a303066156e602727ea8d233e50f966 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 7 Apr 1995 23:10:25 +0000 Subject: [PATCH] (Fcall_interactively): Fix previous change. --- src/callint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 == '*') { -- 2.39.5