diff options
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index d969b20a2..a799cb1a6 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -39,7 +39,7 @@ | |||
39 | * When debugging is on, debugging info will be written to ./trace and | 39 | * When debugging is on, debugging info will be written to ./trace and |
40 | * a quit signal will generate a core dump. | 40 | * a quit signal will generate a core dump. |
41 | */ | 41 | */ |
42 | #define DEBUG 2 | 42 | #define DEBUG 0 |
43 | /* Tweak debug output verbosity here */ | 43 | /* Tweak debug output verbosity here */ |
44 | #define DEBUG_TIME 0 | 44 | #define DEBUG_TIME 0 |
45 | #define DEBUG_PID 1 | 45 | #define DEBUG_PID 1 |
@@ -129,7 +129,7 @@ static const char illnum[] ALIGN1 = "Illegal number: %s"; | |||
129 | /* | 129 | /* |
130 | * We enclose jmp_buf in a structure so that we can declare pointers to | 130 | * We enclose jmp_buf in a structure so that we can declare pointers to |
131 | * jump locations. The global variable handler contains the location to | 131 | * jump locations. The global variable handler contains the location to |
132 | * jump to when an exception occurs, and the global variable exception | 132 | * jump to when an exception occurs, and the global variable exception_type |
133 | * contains a code identifying the exception. To implement nested | 133 | * contains a code identifying the exception. To implement nested |
134 | * exception handlers, the user should save the value of handler on entry | 134 | * exception handlers, the user should save the value of handler on entry |
135 | * to an inner scope, set handler to point to a jmploc structure for the | 135 | * to an inner scope, set handler to point to a jmploc structure for the |