Module Name: src Committed By: rillig Date: Fri Sep 24 06:23:35 UTC 2021
Modified Files: src/usr.bin/indent: lexi.c Log Message: indent: fix space-tab in indentation To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/usr.bin/indent/lexi.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/lexi.c diff -u src/usr.bin/indent/lexi.c:1.43 src/usr.bin/indent/lexi.c:1.44 --- src/usr.bin/indent/lexi.c:1.43 Thu Aug 26 07:03:00 2021 +++ src/usr.bin/indent/lexi.c Fri Sep 24 06:23:35 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: lexi.c,v 1.43 2021/08/26 07:03:00 rillig Exp $ */ +/* $NetBSD: lexi.c,v 1.44 2021/09/24 06:23:35 rillig Exp $ */ /*- * SPDX-License-Identifier: BSD-4-Clause @@ -46,7 +46,7 @@ static char sccsid[] = "@(#)lexi.c 8.1 ( #include <sys/cdefs.h> #ifndef lint #if defined(__NetBSD__) -__RCSID("$NetBSD: lexi.c,v 1.43 2021/08/26 07:03:00 rillig Exp $"); +__RCSID("$NetBSD: lexi.c,v 1.44 2021/09/24 06:23:35 rillig Exp $"); #elif defined(__FreeBSD__) __FBSDID("$FreeBSD: head/usr.bin/indent/lexi.c 337862 2018-08-15 18:19:45Z pstef $"); #endif @@ -516,7 +516,7 @@ lexi(struct parser_state *state) case '\'': case '"': - lex_char_or_string(); + lex_char_or_string(); code = ident; break;