Module Name: src Committed By: rillig Date: Sun Apr 24 09:04:12 UTC 2022
Modified Files: src/tests/usr.bin/indent: Makefile fmt_block.c fmt_decl.c fmt_else_comment.c fmt_expr.c indent_off_on.c label.c lex_char.c lex_ident.c lex_string.c lsym_binary_op.c lsym_case_label.c lsym_colon.c lsym_comma.c lsym_comment.c lsym_do.c lsym_else.c lsym_eof.c lsym_for.c lsym_form_feed.c lsym_funcname.c lsym_if.c lsym_lbrace.c lsym_lparen_or_lbracket.c lsym_newline.c lsym_offsetof.c lsym_period.c lsym_postfix_op.c lsym_preprocessing.c lsym_question.c lsym_rbrace.c lsym_return.c lsym_rparen_or_rbracket.c lsym_semicolon.c lsym_sizeof.c lsym_storage_class.c lsym_switch.c lsym_tag.c lsym_type_in_parentheses.c lsym_type_outside_parentheses.c lsym_typedef.c lsym_unary_op.c lsym_while.c lsym_word.c opt_P.c opt_T.c opt_bacc.c opt_bad.c opt_badp.c opt_bap.c opt_bap_sob.c opt_bbb.c opt_bc.c opt_bl_br.c opt_bs.c opt_c.c opt_cd.c opt_cdb.c opt_ce.c opt_ci.c opt_cli.c opt_cs.c opt_d.c opt_di.c opt_dj.c opt_eei.c opt_ei.c opt_fbs.c opt_fc1.c opt_fcb.c opt_i.c opt_ip.c opt_l.c opt_lc.c opt_ldi.c opt_lp.c opt_lpl.c opt_pcs.c opt_psl.c opt_sc.c opt_sob.c opt_ta.c opt_ts.c opt_ut.c opt_v.c opt_version.c ps_ind_level.c psym_decl.c psym_do.c psym_do_stmt.c psym_else.c psym_for_exprs.c psym_if_expr.c psym_if_expr_stmt.c psym_if_expr_stmt_else.c psym_lbrace.c psym_rbrace.c psym_semicolon.c psym_stmt.c psym_stmt_list.c psym_switch_expr.c psym_while_expr.c t_options.awk t_options.sh token_binary_op.c token_comment.c token_decl.c token_do_stmt.c token_end_of_file.c token_for_exprs.c token_form_feed.c token_funcname.c token_ident.c token_keyword_do.c token_keyword_do_else.c token_keyword_else.c token_keyword_for_if_while.c token_keyword_struct_union_enum.c token_newline.c token_postfix_op.c token_preprocessing.c token_rparen.c token_semicolon.c token_stmt.c token_stmt_list.c token_storage_class.c token_string_prefix.c token_switch_expr.c token_type_def.c token_unary_op.c token_while_expr.c Log Message: tests/indent: change directive from '#' to '//' Using a '//' instead of '#' turns the directives into well-formed C code, resulting in fewer error markers in the editor. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/tests/usr.bin/indent/Makefile cvs rdiff -u -r1.3 -r1.4 src/tests/usr.bin/indent/fmt_block.c \ src/tests/usr.bin/indent/fmt_else_comment.c \ src/tests/usr.bin/indent/fmt_expr.c src/tests/usr.bin/indent/label.c \ src/tests/usr.bin/indent/lex_char.c src/tests/usr.bin/indent/lex_string.c \ src/tests/usr.bin/indent/lsym_period.c \ src/tests/usr.bin/indent/lsym_postfix_op.c \ src/tests/usr.bin/indent/lsym_preprocessing.c \ src/tests/usr.bin/indent/lsym_question.c \ src/tests/usr.bin/indent/lsym_rbrace.c \ src/tests/usr.bin/indent/lsym_return.c \ src/tests/usr.bin/indent/lsym_tag.c \ src/tests/usr.bin/indent/lsym_unary_op.c src/tests/usr.bin/indent/opt_T.c \ src/tests/usr.bin/indent/opt_bap_sob.c src/tests/usr.bin/indent/opt_c.c \ src/tests/usr.bin/indent/opt_cd.c src/tests/usr.bin/indent/opt_d.c \ src/tests/usr.bin/indent/opt_i.c src/tests/usr.bin/indent/opt_lc.c \ src/tests/usr.bin/indent/opt_ta.c src/tests/usr.bin/indent/opt_version.c \ src/tests/usr.bin/indent/psym_for_exprs.c \ src/tests/usr.bin/indent/psym_if_expr.c \ src/tests/usr.bin/indent/psym_if_expr_stmt.c \ src/tests/usr.bin/indent/psym_if_expr_stmt_else.c \ src/tests/usr.bin/indent/psym_switch_expr.c \ src/tests/usr.bin/indent/psym_while_expr.c \ src/tests/usr.bin/indent/token_for_exprs.c \ src/tests/usr.bin/indent/token_newline.c \ src/tests/usr.bin/indent/token_preprocessing.c \ src/tests/usr.bin/indent/token_semicolon.c \ src/tests/usr.bin/indent/token_unary_op.c \ src/tests/usr.bin/indent/token_while_expr.c cvs rdiff -u -r1.34 -r1.35 src/tests/usr.bin/indent/fmt_decl.c cvs rdiff -u -r1.7 -r1.8 src/tests/usr.bin/indent/indent_off_on.c \ src/tests/usr.bin/indent/opt_cdb.c src/tests/usr.bin/indent/opt_ci.c \ src/tests/usr.bin/indent/opt_di.c src/tests/usr.bin/indent/opt_eei.c \ src/tests/usr.bin/indent/opt_fc1.c src/tests/usr.bin/indent/opt_fcb.c \ src/tests/usr.bin/indent/opt_psl.c src/tests/usr.bin/indent/opt_v.c cvs rdiff -u -r1.4 -r1.5 src/tests/usr.bin/indent/lex_ident.c \ src/tests/usr.bin/indent/lsym_binary_op.c \ src/tests/usr.bin/indent/lsym_colon.c \ src/tests/usr.bin/indent/lsym_comma.c \ src/tests/usr.bin/indent/lsym_offsetof.c \ src/tests/usr.bin/indent/lsym_sizeof.c \ src/tests/usr.bin/indent/lsym_typedef.c \ src/tests/usr.bin/indent/lsym_word.c src/tests/usr.bin/indent/opt_P.c \ src/tests/usr.bin/indent/opt_cli.c src/tests/usr.bin/indent/opt_fbs.c \ src/tests/usr.bin/indent/opt_l.c src/tests/usr.bin/indent/opt_ldi.c \ src/tests/usr.bin/indent/opt_sob.c src/tests/usr.bin/indent/opt_ut.c \ src/tests/usr.bin/indent/token_form_feed.c \ src/tests/usr.bin/indent/token_keyword_struct_union_enum.c \ src/tests/usr.bin/indent/token_string_prefix.c cvs rdiff -u -r1.5 -r1.6 src/tests/usr.bin/indent/lsym_case_label.c \ src/tests/usr.bin/indent/lsym_lbrace.c src/tests/usr.bin/indent/opt_bad.c \ src/tests/usr.bin/indent/opt_bap.c src/tests/usr.bin/indent/opt_bbb.c \ src/tests/usr.bin/indent/opt_bc.c src/tests/usr.bin/indent/opt_bl_br.c \ src/tests/usr.bin/indent/opt_ce.c src/tests/usr.bin/indent/opt_cs.c \ src/tests/usr.bin/indent/opt_lp.c src/tests/usr.bin/indent/ps_ind_level.c cvs rdiff -u -r1.2 -r1.3 src/tests/usr.bin/indent/lsym_comment.c \ src/tests/usr.bin/indent/lsym_do.c src/tests/usr.bin/indent/lsym_else.c \ src/tests/usr.bin/indent/lsym_eof.c src/tests/usr.bin/indent/lsym_for.c \ src/tests/usr.bin/indent/lsym_form_feed.c \ src/tests/usr.bin/indent/lsym_funcname.c \ src/tests/usr.bin/indent/lsym_if.c \ src/tests/usr.bin/indent/lsym_newline.c \ src/tests/usr.bin/indent/lsym_rparen_or_rbracket.c \ src/tests/usr.bin/indent/lsym_semicolon.c \ src/tests/usr.bin/indent/lsym_storage_class.c \ src/tests/usr.bin/indent/lsym_switch.c \ src/tests/usr.bin/indent/lsym_type_in_parentheses.c \ src/tests/usr.bin/indent/lsym_type_outside_parentheses.c \ src/tests/usr.bin/indent/lsym_while.c src/tests/usr.bin/indent/opt_ts.c \ src/tests/usr.bin/indent/psym_decl.c src/tests/usr.bin/indent/psym_do.c \ src/tests/usr.bin/indent/psym_do_stmt.c \ src/tests/usr.bin/indent/psym_else.c \ src/tests/usr.bin/indent/psym_lbrace.c \ src/tests/usr.bin/indent/psym_rbrace.c \ src/tests/usr.bin/indent/psym_semicolon.c \ src/tests/usr.bin/indent/psym_stmt.c \ src/tests/usr.bin/indent/psym_stmt_list.c \ src/tests/usr.bin/indent/token_decl.c \ src/tests/usr.bin/indent/token_do_stmt.c \ src/tests/usr.bin/indent/token_end_of_file.c \ src/tests/usr.bin/indent/token_funcname.c \ src/tests/usr.bin/indent/token_keyword_do.c \ src/tests/usr.bin/indent/token_keyword_do_else.c \ src/tests/usr.bin/indent/token_keyword_else.c \ src/tests/usr.bin/indent/token_keyword_for_if_while.c \ src/tests/usr.bin/indent/token_postfix_op.c \ src/tests/usr.bin/indent/token_rparen.c \ src/tests/usr.bin/indent/token_stmt.c \ src/tests/usr.bin/indent/token_stmt_list.c \ src/tests/usr.bin/indent/token_storage_class.c \ src/tests/usr.bin/indent/token_switch_expr.c \ src/tests/usr.bin/indent/token_type_def.c cvs rdiff -u -r1.6 -r1.7 src/tests/usr.bin/indent/lsym_lparen_or_lbracket.c \ src/tests/usr.bin/indent/opt_dj.c src/tests/usr.bin/indent/opt_ei.c \ src/tests/usr.bin/indent/opt_ip.c src/tests/usr.bin/indent/opt_lpl.c \ src/tests/usr.bin/indent/opt_sc.c src/tests/usr.bin/indent/token_ident.c cvs rdiff -u -r1.9 -r1.10 src/tests/usr.bin/indent/opt_bacc.c \ src/tests/usr.bin/indent/opt_bs.c src/tests/usr.bin/indent/t_options.awk \ src/tests/usr.bin/indent/t_options.sh cvs rdiff -u -r1.8 -r1.9 src/tests/usr.bin/indent/opt_badp.c cvs rdiff -u -r1.12 -r1.13 src/tests/usr.bin/indent/opt_pcs.c \ src/tests/usr.bin/indent/token_binary_op.c cvs rdiff -u -r1.29 -r1.30 src/tests/usr.bin/indent/token_comment.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.