summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-06-28 21:21:00 -0400
committerJune McEnroe <june@causal.agency>2019-06-28 21:21:36 -0400
commit39129e90251a3dff3fda005eabf5ce3df7730941 (patch)
treedb2bbf9c245b72528a286bf0a2a54f27733c8096
parentConsolidate catsh history documentation (diff)
downloadsrc-39129e90251a3dff3fda005eabf5ce3df7730941.tar.gz
src-39129e90251a3dff3fda005eabf5ce3df7730941.zip
Unset iflag when exiting catsh
It saves history! It's usable!
-rw-r--r--bin/catsh/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/catsh/main.c b/bin/catsh/main.c
index c3b28173..7a0bf25b 100644
--- a/bin/catsh/main.c
+++ b/bin/catsh/main.c
@@ -173,6 +173,8 @@ state4:
 	if (sflag || minusc == NULL) {
 		cmdloop(1);
 	}
+	iflag = 0;
+	optschanged();
 	exitshell(exitstatus);
 	/*NOTREACHED*/
 	return 0;
@@ -339,6 +341,8 @@ exitcmd(int argc, char **argv)
 {
 	if (stoppedjobs())
 		return 0;
+	iflag = 0;
+	optschanged();
 	if (argc > 1)
 		exitshell(number(argv[1]));
 	else
tr>2021-08-22Update to Linux man-pages 5.12Štěpán Němec 2021-06-21Add manuals for macOS 11.3June McEnroe 2021-05-08Update to OpenBSD 6.9June McEnroe 2021-04-26Update to Linux man-pages 5.11June McEnroe 2021-04-26Update to FreeBSD 13.0June McEnroe 2021-01-27Completely rewrite how manuals are fetched and installedJune McEnroe 2020-12-14Update to man-pages-posix 2017-aJune McEnroe 2020-12-14Update to OpenBSD 6.8June McEnroe 2020-12-14Update to NetBSD 9.1June McEnroe 2020-12-14Update to man-pages 5.09June McEnroe 2020-12-14Update to FreeBSD 12.2June McEnroe 2020-06-08Update to OpenBSD 6.7June McEnroe 2020-05-04Add hack for macOS to search extra man sectionsJune McEnroe 2020-05-04Don't clear MANSECTJune McEnroe