Module Name: src
Committed By: rillig
Date: Wed May 17 18:03:25 UTC 2023
Modified Files:
src/usr.bin/indent: debug.c
Log Message:
indent: fix indentation in preprocessor line
No binary change.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.bin/indent/debug.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/debug.c
diff -u src/usr.bin/indent/debug.c:1.11 src/usr.bin/indent/debug.c:1.12
--- src/usr.bin/indent/debug.c:1.11 Tue May 16 12:46:43 2023
+++ src/usr.bin/indent/debug.c Wed May 17 18:03:25 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: debug.c,v 1.11 2023/05/16 12:46:43 rillig Exp $ */
+/* $NetBSD: debug.c,v 1.12 2023/05/17 18:03:25 rillig Exp $ */
/*-
* Copyright (c) 2023 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: debug.c,v 1.11 2023/05/16 12:46:43 rillig Exp $");
+__RCSID("$NetBSD: debug.c,v 1.12 2023/05/17 18:03:25 rillig Exp $");
#include <stdarg.h>
@@ -188,7 +188,7 @@ debug_buffers(void)
}
#define debug_ps_bool(name) \
- if (ps.name != prev_ps.name) \
+ if (ps.name != prev_ps.name) \
debug_println("[%c] -> [%c] ps." #name, \
prev_ps.name ? 'x' : ' ', ps.name ? 'x' : ' '); \
else if (debug_full_parser_state) \