drop suspend alias in Android too
This commit is contained in:
parent
cc31d86e3b
commit
865b267dbf
8
main.c
8
main.c
@ -33,7 +33,7 @@
|
|||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.174 2011/01/21 21:04:44 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.175 2011/01/21 21:07:11 tg Exp $");
|
||||||
|
|
||||||
extern char **environ;
|
extern char **environ;
|
||||||
|
|
||||||
@ -69,10 +69,10 @@ static const char *initcoms[] = {
|
|||||||
T_local_typeset,
|
T_local_typeset,
|
||||||
"hash=alias -t", /* not "alias -t --": hash -r needs to work */
|
"hash=alias -t", /* not "alias -t --": hash -r needs to work */
|
||||||
"type=whence -v",
|
"type=whence -v",
|
||||||
#ifndef MKSH_UNEMPLOYED
|
#if !defined(ANDROID) && !defined(MKSH_UNEMPLOYED)
|
||||||
#ifndef ANDROID
|
/* not in Android for political reasons */
|
||||||
|
/* not in ARGE mksh due to no job control */
|
||||||
"stop=kill -STOP",
|
"stop=kill -STOP",
|
||||||
#endif
|
|
||||||
"suspend=kill -STOP $$",
|
"suspend=kill -STOP $$",
|
||||||
#endif
|
#endif
|
||||||
"autoload=typeset -fu",
|
"autoload=typeset -fu",
|
||||||
|
Loading…
Reference in New Issue
Block a user