From 597393a3a3f23f069e7c88e46ef3b40920dd3e40 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 16 Apr 2019 00:50:27 +0200 Subject: [PATCH] kernel: whitespace fixes --- src/read.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/read.c b/src/read.c index e86484e975..c5e8bdd03f 100644 --- a/src/read.c +++ b/src/read.c @@ -956,7 +956,7 @@ static void ReadListExpr ( /* incorrect place for three dots */ if (STATE(Symbol) == S_DOTDOTDOT) { - SyntaxError("Only two dots in a range"); + SyntaxError("Only two dots in a range"); } /* '..' ']' */ @@ -2142,8 +2142,8 @@ static void ReadAtomic ( Match( S_ATOMIC, "atomic", follow ); /* Might just be an atomic function literal as an expression */ if (STATE(Symbol) == S_FUNCTION) { - ReadExpr(follow, 'a'); - return; + ReadExpr(follow, 'a'); + return; } /* 'atomic' {',' } 'do' */