Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make make(1): replace backslash-newline with ordinar...
details: https://anonhg.NetBSD.org/src/rev/071616b57d89
branches: trunk
changeset: 955533:071616b57d89
user: rillig <rillig%NetBSD.org@localhost>
date: Sat Oct 03 13:22:39 2020 +0000
description:
make(1): replace backslash-newline with ordinary string literals
The character sequence backslash-newline is not mentioned in ISO C99.
diffstat:
usr.bin/make/main.c | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diffs (24 lines):
diff -r 81a150910a21 -r 071616b57d89 usr.bin/make/main.c
--- a/usr.bin/make/main.c Sat Oct 03 13:06:56 2020 +0000
+++ b/usr.bin/make/main.c Sat Oct 03 13:22:39 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.362 2020/10/03 13:06:56 rillig Exp $ */
+/* $NetBSD: main.c,v 1.363 2020/10/03 13:22:39 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -126,10 +126,11 @@
#endif
/* "@(#)main.c 8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: main.c,v 1.362 2020/10/03 13:06:56 rillig Exp $");
+MAKE_RCSID("$NetBSD: main.c,v 1.363 2020/10/03 13:22:39 rillig Exp $");
#if defined(MAKE_NATIVE) && !defined(lint)
-__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993\
- The Regents of the University of California. All rights reserved.");
+__COPYRIGHT("@(#) Copyright (c) 1988, 1989, 1990, 1993 "
+ "The Regents of the University of California. "
+ "All rights reserved.");
#endif
#ifndef DEFMAXLOCAL
Home |
Main Index |
Thread Index |
Old Index