summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-11-10 11:11:39 +0000
committerJim Meyering <jim@meyering.net>2002-11-10 11:11:39 +0000
commitecf915a6a47f8a208c464dc224414a1cfb310fdf (patch)
treea8fd0faee045d7f1eef7dc67ef1a21b470c646cc /ChangeLog
parentbb38561062c417e7bb242fea6bef848599ee6766 (diff)
downloadcoreutils-ecf915a6a47f8a208c464dc224414a1cfb310fdf.tar.xz
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ff327050..86038625b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,10 +2,18 @@
* Version 4.5.4.
+ * src/ls.c (restore_default_color_handler, sigtstp_handler):
+ Remove functions.
+ (sighandler): New function, based on the one in sort.c.
+ (main): Use sigaction, if possible; otherwise signal.
+ Handle these signals:
+ SIGHUP, SIGINT, SIGPIPE, SIGQUIT, SIGTERM, SIGTSTP.
+ Don't register our handler if the signal is already being ignored.
+
* src/dd.c (interrupt_handler): Use raise, rather than kill+getpid.
* src/csplit.c (interrupt_handler): Likewise.
* src/sort.c (sighandler): Likewise.
- (main): Declare `nsigs' to be unsigned, not int.
+ (main): Declare `i' and `nsigs' to be unsigned, not int.
2002-11-09 Jim Meyering <jim@meyering.net>