Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/indent indent: fix debug logging



details:   https://anonhg.NetBSD.org/src/rev/45512c7c533e
branches:  trunk
changeset: 990414:45512c7c533e
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue Oct 26 20:17:42 2021 +0000

description:
indent: fix debug logging

The parser state is not always 'ps', so the debug logging must use the
correct state as well.

diffstat:

 usr.bin/indent/lexi.c |  25 ++++++++++++++-----------
 1 files changed, 14 insertions(+), 11 deletions(-)

diffs (73 lines):

diff -r e934d6efb148 -r 45512c7c533e usr.bin/indent/lexi.c
--- a/usr.bin/indent/lexi.c     Tue Oct 26 19:36:30 2021 +0000
+++ b/usr.bin/indent/lexi.c     Tue Oct 26 20:17:42 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: lexi.c,v 1.103 2021/10/26 19:36:30 rillig Exp $        */
+/*     $NetBSD: lexi.c,v 1.104 2021/10/26 20:17:42 rillig Exp $        */
 
 /*-
  * SPDX-License-Identifier: BSD-4-Clause
@@ -43,7 +43,7 @@
 
 #include <sys/cdefs.h>
 #if defined(__NetBSD__)
-__RCSID("$NetBSD: lexi.c,v 1.103 2021/10/26 19:36:30 rillig Exp $");
+__RCSID("$NetBSD: lexi.c,v 1.104 2021/10/26 20:17:42 rillig Exp $");
 #elif defined(__FreeBSD__)
 __FBSDID("$FreeBSD: head/usr.bin/indent/lexi.c 337862 2018-08-15 18:19:45Z pstef $");
 #endif
@@ -295,26 +295,29 @@
 }
 
 static void
-debug_lexi(lexer_symbol lsym)
+debug_lexi(const struct parser_state *state, lexer_symbol lsym)
 {
-    debug_printf("\n");
+    debug_println("");
     debug_printf("line %d\n", line_no);
+    if (state != &ps)
+       debug_println("transient state");
     debug_print_buf("label", &lab);
     debug_print_buf("code", &code);
     debug_print_buf("comment", &com);
     debug_printf("lexi returns '%s'", lsym_name(lsym));
-    if (ps.keyword != kw_0)
-       debug_printf(" keyword '%s'", kw_name(ps.keyword));
-    debug_printf("\n");
+    if (state->keyword != kw_0)
+       debug_printf(" keyword '%s'", kw_name(state->keyword));
+    debug_println("");
     debug_print_buf("token", &token);
 }
 #endif
 
+/* ARGSUSED */
 static lexer_symbol
-lexi_end(lexer_symbol lsym)
+lexi_end(const struct parser_state *state, lexer_symbol lsym)
 {
 #ifdef debug
-    debug_lexi(lsym);
+    debug_lexi(state, lsym);
 #endif
     return lsym;
 }
@@ -568,7 +571,7 @@
 
     lexer_symbol alnum_lsym = lexi_alnum(state);
     if (alnum_lsym != lsym_eof)
-       return lexi_end(alnum_lsym);
+       return lexi_end(state, alnum_lsym);
 
     /* Scan a non-alphanumeric token */
 
@@ -755,7 +758,7 @@
     check_size_token(1);
     *token.e = '\0';
 
-    return lexi_end(lsym);
+    return lexi_end(state, lsym);
 }
 
 void



Home | Main Index | Thread Index | Old Index