From: Karl Heuer Date: Fri, 7 Apr 1995 23:10:25 +0000 (+0000) Subject: (Fcall_interactively): Fix previous change. X-Git-Tag: emacs-19.34~4578 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fb7756026a303066156e602727ea8d233e50f966;p=emacs.git (Fcall_interactively): Fix previous change. --- 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 == '*') {