Module Name: src
Committed By: rillig
Date: Sun Nov 7 10:34:03 UTC 2021
Modified Files:
src/usr.bin/indent: pr_comment.c
Log Message:
indent: make end of comment detection of nowrap comments simpler
No functional change.
To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 src/usr.bin/indent/pr_comment.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/indent/pr_comment.c
diff -u src/usr.bin/indent/pr_comment.c:1.106 src/usr.bin/indent/pr_comment.c:1.107
--- src/usr.bin/indent/pr_comment.c:1.106 Sun Nov 7 10:31:12 2021
+++ src/usr.bin/indent/pr_comment.c Sun Nov 7 10:34:03 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pr_comment.c,v 1.106 2021/11/07 10:31:12 rillig Exp $ */
+/* $NetBSD: pr_comment.c,v 1.107 2021/11/07 10:34:03 rillig Exp $ */
/*-
* SPDX-License-Identifier: BSD-4-Clause
@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)pr_comment.c
#include <sys/cdefs.h>
#if defined(__NetBSD__)
-__RCSID("$NetBSD: pr_comment.c,v 1.106 2021/11/07 10:31:12 rillig Exp $");
+__RCSID("$NetBSD: pr_comment.c,v 1.107 2021/11/07 10:34:03 rillig Exp $");
#elif defined(__FreeBSD__)
__FBSDID("$FreeBSD: head/usr.bin/indent/pr_comment.c 334927 2018-06-10 16:44:18Z pstef $");
#endif
@@ -352,10 +352,8 @@ copy_comment_nowrap(void)
}
com_add_char(inp_next());
- if (com.e[-1] == '*' && *inp.s == '/' && token.e[-1] == '*') {
- com_add_char(inp_next());
+ if (com.e[-2] == '*' && com.e[-1] == '/' && token.e[-1] == '*')
goto finish;
- }
}
finish: