Module Name: src Committed By: rillig Date: Thu Nov 25 19:56:03 UTC 2021
Modified Files: src/tests/usr.bin/indent: ps_ind_level.c Log Message: tests/indent: rename ps.in_parameter_declaration in test as well To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/indent/ps_ind_level.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/usr.bin/indent/ps_ind_level.c diff -u src/tests/usr.bin/indent/ps_ind_level.c:1.3 src/tests/usr.bin/indent/ps_ind_level.c:1.4 --- src/tests/usr.bin/indent/ps_ind_level.c:1.3 Sat Nov 20 16:54:17 2021 +++ src/tests/usr.bin/indent/ps_ind_level.c Thu Nov 25 19:56:03 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: ps_ind_level.c,v 1.3 2021/11/20 16:54:17 rillig Exp $ */ +/* $NetBSD: ps_ind_level.c,v 1.4 2021/11/25 19:56:03 rillig Exp $ */ /* $FreeBSD$ */ /* @@ -32,10 +32,10 @@ void function_in_column_1(void){} * In the above function declaration, the space between '){' is missing. This * is because the tokenizer only recognizes function definitions if they start * at indentation level 0, but this declaration starts at indentation level 4, - * due to the indentation in line 1. It's an edge case and probably not worth - * fixing. + * due to the indentation in line 1. It's an edge case that is probably not + * worth fixing. * - * See 'in_parameter_declaration = true'. + * See 'in_func_def_params = true'. */