Module Name:    src
Committed By:   rillig
Date:           Fri Nov  5 19:42:48 UTC 2021

Modified Files:
        src/usr.bin/indent: indent.c

Log Message:
indent: rename process_keyword_do to process_do, same for 'else'

Before the symbols from the tokenizer had the prefix 'lsym', the symbols
could not be simply called 'else' and 'do'. The functions for processing
the tokens followed that naming scheme.

When the prefix 'lsym' was introduced, the word 'keyword' was no longer
needed, neither in the constants nor in the function names.

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/usr.bin/indent/indent.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/indent.c
diff -u src/usr.bin/indent/indent.c:1.208 src/usr.bin/indent/indent.c:1.209
--- src/usr.bin/indent/indent.c:1.208	Fri Nov  5 19:33:28 2021
+++ src/usr.bin/indent/indent.c	Fri Nov  5 19:42:48 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: indent.c,v 1.208 2021/11/05 19:33:28 rillig Exp $	*/
+/*	$NetBSD: indent.c,v 1.209 2021/11/05 19:42:48 rillig Exp $	*/
 
 /*-
  * SPDX-License-Identifier: BSD-4-Clause
@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)indent.c	5.1
 
 #include <sys/cdefs.h>
 #if defined(__NetBSD__)
-__RCSID("$NetBSD: indent.c,v 1.208 2021/11/05 19:33:28 rillig Exp $");
+__RCSID("$NetBSD: indent.c,v 1.209 2021/11/05 19:42:48 rillig Exp $");
 #elif defined(__FreeBSD__)
 __FBSDID("$FreeBSD: head/usr.bin/indent/indent.c 340138 2018-11-04 19:24:49Z oshogbo $");
 #endif
@@ -1084,7 +1084,7 @@ process_rbrace(bool *spaced_expr, int *d
 }
 
 static void
-process_keyword_do(bool *force_nl, bool *last_else)
+process_do(bool *force_nl, bool *last_else)
 {
     ps.in_stmt = false;
 
@@ -1101,7 +1101,7 @@ process_keyword_do(bool *force_nl, bool 
 }
 
 static void
-process_keyword_else(bool *force_nl, bool *last_else)
+process_else(bool *force_nl, bool *last_else)
 {
     ps.in_stmt = false;
 
@@ -1491,11 +1491,11 @@ main_loop(void)
 	    goto copy_token;
 
 	case lsym_do:
-	    process_keyword_do(&force_nl, &last_else);
+	    process_do(&force_nl, &last_else);
 	    goto copy_token;
 
 	case lsym_else:
-	    process_keyword_else(&force_nl, &last_else);
+	    process_else(&force_nl, &last_else);
 	    goto copy_token;
 
 	case lsym_typedef:

Reply via email to