Module Name:    src
Committed By:   kre
Date:           Mon Oct 14 09:10:35 UTC 2024

Modified Files:
        src/bin/sh: options.c

Log Message:
80 column police (for the recent -r change).   NFC.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/bin/sh/options.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/bin/sh/options.c
diff -u src/bin/sh/options.c:1.61 src/bin/sh/options.c:1.62
--- src/bin/sh/options.c:1.61	Mon Oct 14 08:27:53 2024
+++ src/bin/sh/options.c	Mon Oct 14 09:10:35 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: options.c,v 1.61 2024/10/14 08:27:53 kre Exp $	*/
+/*	$NetBSD: options.c,v 1.62 2024/10/14 09:10:35 kre Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)options.c	8.2 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: options.c,v 1.61 2024/10/14 08:27:53 kre Exp $");
+__RCSID("$NetBSD: options.c,v 1.62 2024/10/14 09:10:35 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -245,7 +245,8 @@ options(int cmdline)
 					set_debug("*$", val);
 #endif
 			} else if (cmdline && c == 'r') {
-				out1fmt("NetBSD shell: %s\n", lookupvar("NETBSD_SHELL"));
+				out1fmt("NetBSD shell: %s\n",
+				    lookupvar("NETBSD_SHELL"));
 				sh_exit(0);
 			} else {
 				setoption(c, val);

Reply via email to