projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9ed35c
)
- Rich Felker writes:
author
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:41:13 +0000
(12:41 -0000)
committer
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Fri, 19 May 2006 12:41:13 +0000
(12:41 -0000)
SIGIOT is not defined in any standard i can find and it seems to be
useless (alias for SIGABRT) on linux. i put it in #ifdef but it's
probably best just to remove it and cut down the size a bit.
editors/vi.c
patch
|
blob
|
history
diff --git
a/editors/vi.c
b/editors/vi.c
index 0c0c930b9748e3209d09cc7b680dee20ce874353..f271cc3e00bb62908840bc2fccc60d044bca9cac 100644
(file)
--- a/
editors/vi.c
+++ b/
editors/vi.c
@@
-2180,7
+2180,9
@@
static void core_sig(int sig)
signal(SIGQUIT, core_sig);
signal(SIGILL, core_sig);
signal(SIGTRAP, core_sig);
+#ifdef SIGIOT
signal(SIGIOT, core_sig);
+#endif
signal(SIGABRT, core_sig);
signal(SIGFPE, core_sig);
signal(SIGBUS, core_sig);