diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-25 17:26:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-25 17:26:56 +0200 |
commit | 1825e4f935f8e9ef9685766ab60659d78602c906 (patch) | |
tree | 0da0ec8d4b757c732b5348f2ce88d6d953a60591 | |
parent | 061a09091f21f8e2d3ac61cb1a5f8c919ddce26e (diff) | |
download | busybox-w32-1825e4f935f8e9ef9685766ab60659d78602c906.tar.gz busybox-w32-1825e4f935f8e9ef9685766ab60659d78602c906.tar.bz2 busybox-w32-1825e4f935f8e9ef9685766ab60659d78602c906.zip |
ash: remove unused EXSHELLPROC
Upstream commit:
Date: Sun, 28 Nov 2010 20:47:07 +0800
[BUILTIN] Stop documenting EXSHELLPROC
At some point between ash 0.3.5-11.0.1 and ash 0.3.8-37, Debian
ash stopped using the EXSHELLPROC exception to handle shell
scripts without a magic number.
Remove all remaining references to it to avoid confusion.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 29d1d57ca..1511d95c7 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -301,7 +301,6 @@ struct globals_misc { | |||
301 | /* exceptions */ | 301 | /* exceptions */ |
302 | #define EXINT 0 /* SIGINT received */ | 302 | #define EXINT 0 /* SIGINT received */ |
303 | #define EXERROR 1 /* a generic error */ | 303 | #define EXERROR 1 /* a generic error */ |
304 | #define EXSHELLPROC 2 /* execute a shell procedure */ | ||
305 | #define EXEXIT 4 /* exit the shell */ | 304 | #define EXEXIT 4 /* exit the shell */ |
306 | #define EXSIG 5 /* trapped signal in wait(1) */ | 305 | #define EXSIG 5 /* trapped signal in wait(1) */ |
307 | 306 | ||