From 5a3d6ac67f054a32625bf5cf565a0a945de166fd Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Wed, 10 May 2006 15:39:52 +0000 Subject: [PATCH] Balance curly braces. --- commands/ash/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/ash/main.c b/commands/ash/main.c index 2461b7412..e8200eaf2 100755 --- a/commands/ash/main.c +++ b/commands/ash/main.c @@ -122,10 +122,11 @@ main(argc, argv) char **argv; { reset(); #if ATTY if (exception == EXINT - && (! attyset() || equal(termval(), "emacs"))) { + && (! attyset() || equal(termval(), "emacs"))) #else - if (exception == EXINT) { + if (exception == EXINT) #endif + { out2c('\n'); flushout(&errout); } -- 2.44.0