From: Thomas Roessler Date: Tue, 7 Mar 2000 11:18:56 +0000 (+0000) Subject: The uncolor/unmono commands weren't parsed correctly when not X-Git-Tag: mutt-1-1-9-rel~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea7a571be6099fd8ea365597a5b3d054e39bc72d;p=mutt The uncolor/unmono commands weren't parsed correctly when not applicable. This fixes bug#65. --- diff --git a/color.c b/color.c index 5c9305c7..de5596a5 100644 --- a/color.c +++ b/color.c @@ -399,6 +399,10 @@ _mutt_parse_uncolor (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err, #endif ) { + do + mutt_extract_token (buf, s, 0); + while (MoreArgs (s)); + return 0; }