aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index fe8c1bed2..4acc30110 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -11848,7 +11848,9 @@ cmdloop(int top)
11848#endif 11848#endif
11849 } 11849 }
11850 n = parsecmd(inter); 11850 n = parsecmd(inter);
11851 /* showtree(n); DEBUG */ 11851#if DEBUG
11852 showtree(n);
11853#endif
11852 if (n == NEOF) { 11854 if (n == NEOF) {
11853 if (!top || numeof >= 50) 11855 if (!top || numeof >= 50)
11854 break; 11856 break;