Home | History | Annotate | Line # | Download | only in indent
io.c revision 1.64
      1  1.64    rillig /*	$NetBSD: io.c,v 1.64 2021/09/25 20:56:53 rillig Exp $	*/
      2   1.3       tls 
      3  1.19     kamil /*-
      4  1.19     kamil  * SPDX-License-Identifier: BSD-4-Clause
      5  1.19     kamil  *
      6  1.19     kamil  * Copyright (c) 1985 Sun Microsystems, Inc.
      7   1.4       mrg  * Copyright (c) 1980, 1993
      8   1.4       mrg  *	The Regents of the University of California.  All rights reserved.
      9   1.1       cgd  * All rights reserved.
     10   1.1       cgd  *
     11   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     12   1.1       cgd  * modification, are permitted provided that the following conditions
     13   1.1       cgd  * are met:
     14   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     15   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     16   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     18   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     19   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     20   1.1       cgd  *    must display the following acknowledgement:
     21   1.1       cgd  *	This product includes software developed by the University of
     22   1.1       cgd  *	California, Berkeley and its contributors.
     23   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     24   1.1       cgd  *    may be used to endorse or promote products derived from this software
     25   1.1       cgd  *    without specific prior written permission.
     26   1.1       cgd  *
     27   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37   1.1       cgd  * SUCH DAMAGE.
     38   1.1       cgd  */
     39   1.1       cgd 
     40  1.19     kamil #if 0
     41  1.19     kamil static char sccsid[] = "@(#)io.c	8.1 (Berkeley) 6/6/93";
     42  1.19     kamil #endif
     43  1.19     kamil 
     44   1.5     lukem #include <sys/cdefs.h>
     45  1.19     kamil #if defined(__NetBSD__)
     46  1.64    rillig __RCSID("$NetBSD: io.c,v 1.64 2021/09/25 20:56:53 rillig Exp $");
     47  1.19     kamil #elif defined(__FreeBSD__)
     48  1.19     kamil __FBSDID("$FreeBSD: head/usr.bin/indent/io.c 334927 2018-06-10 16:44:18Z pstef $");
     49  1.19     kamil #endif
     50   1.1       cgd 
     51   1.5     lukem #include <ctype.h>
     52   1.5     lukem #include <err.h>
     53   1.1       cgd #include <stdio.h>
     54   1.1       cgd #include <stdlib.h>
     55   1.1       cgd #include <string.h>
     56  1.20  christos #include <stdarg.h>
     57  1.22    rillig 
     58  1.19     kamil #include "indent.h"
     59   1.1       cgd 
     60  1.62    rillig bool comment_open;
     61  1.31    rillig static int  paren_indent;
     62   1.1       cgd 
     63  1.28    rillig static void
     64  1.28    rillig output_char(char ch)
     65  1.28    rillig {
     66  1.28    rillig     fputc(ch, output);
     67  1.36    rillig     debug_vis_range("output_char '", &ch, &ch + 1, "'\n");
     68  1.28    rillig }
     69  1.28    rillig 
     70  1.28    rillig static void
     71  1.28    rillig output_range(const char *s, const char *e)
     72  1.28    rillig {
     73  1.28    rillig     fwrite(s, 1, (size_t)(e - s), output);
     74  1.36    rillig     debug_vis_range("output_range \"", s, e, "\"\n");
     75  1.28    rillig }
     76  1.28    rillig 
     77  1.29    rillig static inline void
     78  1.28    rillig output_string(const char *s)
     79  1.28    rillig {
     80  1.28    rillig     output_range(s, s + strlen(s));
     81  1.28    rillig }
     82  1.28    rillig 
     83  1.34    rillig static int
     84  1.34    rillig output_indent(int old_ind, int new_ind)
     85  1.34    rillig {
     86  1.34    rillig     int ind = old_ind;
     87  1.34    rillig 
     88  1.34    rillig     if (opt.use_tabs) {
     89  1.34    rillig 	int tabsize = opt.tabsize;
     90  1.34    rillig 	int n = new_ind / tabsize - ind / tabsize;
     91  1.34    rillig 	if (n > 0)
     92  1.34    rillig 	    ind -= ind % tabsize;
     93  1.34    rillig 	for (int i = 0; i < n; i++) {
     94  1.36    rillig 	    fputc('\t', output);
     95  1.34    rillig 	    ind += tabsize;
     96  1.34    rillig 	}
     97  1.34    rillig     }
     98  1.34    rillig 
     99  1.34    rillig     for (; ind < new_ind; ind++)
    100  1.36    rillig         fputc(' ', output);
    101  1.34    rillig 
    102  1.36    rillig     debug_println("output_indent %d", ind);
    103  1.34    rillig     return ind;
    104  1.34    rillig }
    105  1.34    rillig 
    106  1.26    rillig /*
    107  1.26    rillig  * dump_line is the routine that actually effects the printing of the new
    108  1.26    rillig  * source. It prints the label section, followed by the code section with
    109  1.26    rillig  * the appropriate nesting level, followed by any comments.
    110  1.26    rillig  */
    111   1.5     lukem void
    112  1.11       wiz dump_line(void)
    113  1.26    rillig {
    114  1.44    rillig     int cur_col;
    115  1.62    rillig     static bool not_first_line;
    116  1.19     kamil 
    117  1.60    rillig     if (ps.procname[0] != '\0') {
    118  1.19     kamil 	ps.ind_level = 0;
    119  1.60    rillig 	ps.procname[0] = '\0';
    120  1.19     kamil     }
    121  1.30    rillig 
    122  1.55    rillig     if (code.s == code.e && lab.s == lab.e && com.s == com.e) {
    123  1.19     kamil 	if (suppress_blanklines > 0)
    124  1.19     kamil 	    suppress_blanklines--;
    125  1.63    rillig 	else
    126  1.19     kamil 	    n_real_blanklines++;
    127  1.30    rillig     } else if (!inhibit_formatting) {
    128  1.19     kamil 	suppress_blanklines = 0;
    129  1.19     kamil 	if (prefix_blankline_requested && not_first_line) {
    130  1.19     kamil 	    if (opt.swallow_optional_blanklines) {
    131  1.19     kamil 		if (n_real_blanklines == 1)
    132  1.19     kamil 		    n_real_blanklines = 0;
    133  1.30    rillig 	    } else {
    134  1.19     kamil 		if (n_real_blanklines == 0)
    135  1.19     kamil 		    n_real_blanklines = 1;
    136  1.19     kamil 	    }
    137  1.19     kamil 	}
    138  1.19     kamil 	while (--n_real_blanklines >= 0)
    139  1.28    rillig 	    output_char('\n');
    140  1.19     kamil 	n_real_blanklines = 0;
    141  1.19     kamil 	if (ps.ind_level == 0)
    142  1.60    rillig 	    ps.ind_stmt = false;/* this is a class A kludge. don't do
    143  1.19     kamil 				 * additional statement indentation if we are
    144  1.19     kamil 				 * at bracket level 0 */
    145  1.19     kamil 
    146  1.55    rillig 	if (lab.e != lab.s || code.e != code.s)
    147  1.58    rillig 	    ps.stats.code_lines++;
    148  1.19     kamil 
    149  1.19     kamil 
    150  1.54    rillig 	if (lab.e != lab.s) {	/* print lab, if any */
    151  1.19     kamil 	    if (comment_open) {
    152  1.60    rillig 		comment_open = false;
    153  1.28    rillig 		output_string(".*/\n");
    154  1.19     kamil 	    }
    155  1.54    rillig 	    while (lab.e > lab.s && (lab.e[-1] == ' ' || lab.e[-1] == '\t'))
    156  1.54    rillig 		lab.e--;
    157  1.54    rillig 	    *lab.e = '\0';
    158  1.38    rillig 	    cur_col = 1 + output_indent(0, compute_label_indent());
    159  1.54    rillig 	    if (lab.s[0] == '#' && (strncmp(lab.s, "#else", 5) == 0
    160  1.54    rillig 				    || strncmp(lab.s, "#endif", 6) == 0)) {
    161  1.54    rillig 		char *s = lab.s;
    162  1.54    rillig 		if (lab.e[-1] == '\n') lab.e--;
    163  1.25    rillig 		do {
    164  1.28    rillig 		    output_char(*s++);
    165  1.54    rillig 		} while (s < lab.e && 'a' <= *s && *s <= 'z');
    166  1.54    rillig 		while ((*s == ' ' || *s == '\t') && s < lab.e)
    167  1.19     kamil 		    s++;
    168  1.54    rillig 		if (s < lab.e) {
    169  1.28    rillig 		    if (s[0] == '/' && s[1] == '*') {
    170  1.28    rillig 			output_char('\t');
    171  1.54    rillig 			output_range(s, lab.e);
    172  1.28    rillig 		    } else {
    173  1.28    rillig 		        output_string("\t/* ");
    174  1.54    rillig 			output_range(s, lab.e);
    175  1.28    rillig 			output_string(" */");
    176  1.28    rillig 		    }
    177  1.28    rillig 		}
    178  1.28    rillig 	    } else
    179  1.54    rillig 	        output_range(lab.s, lab.e);
    180  1.54    rillig 	    cur_col = 1 + indentation_after(cur_col - 1, lab.s);
    181  1.30    rillig 	} else
    182  1.19     kamil 	    cur_col = 1;	/* there is no label section */
    183  1.19     kamil 
    184  1.19     kamil 	ps.pcase = false;
    185  1.19     kamil 
    186  1.55    rillig 	if (code.s != code.e) {	/* print code section, if any */
    187  1.19     kamil 	    if (comment_open) {
    188  1.60    rillig 		comment_open = false;
    189  1.28    rillig 		output_string(".*/\n");
    190  1.19     kamil 	    }
    191  1.44    rillig 	    int target_col = 1 + compute_code_indent();
    192  1.19     kamil 	    {
    193  1.19     kamil 		int i;
    194  1.19     kamil 
    195  1.36    rillig 		for (i = 0; i < ps.p_l_follow; i++) {
    196  1.36    rillig 		    if (ps.paren_indents[i] >= 0) {
    197  1.36    rillig 			int ind = ps.paren_indents[i];
    198  1.36    rillig 			/*
    199  1.36    rillig 			 * XXX: this mix of 'indent' and 'column' smells like
    200  1.36    rillig 			 * an off-by-one error.
    201  1.36    rillig 			 */
    202  1.36    rillig 			ps.paren_indents[i] = -(ind + target_col);
    203  1.36    rillig 			debug_println(
    204  1.36    rillig 			    "setting pi[%d] from %d to %d for column %d",
    205  1.36    rillig 			    i, ind, ps.paren_indents[i], target_col);
    206  1.36    rillig 		    }
    207  1.36    rillig 		}
    208  1.19     kamil 	    }
    209  1.34    rillig 	    cur_col = 1 + output_indent(cur_col - 1, target_col - 1);
    210  1.55    rillig 	    output_range(code.s, code.e);
    211  1.55    rillig 	    cur_col = 1 + indentation_after(cur_col - 1, code.s);
    212  1.19     kamil 	}
    213  1.52    rillig 	if (com.s != com.e) {		/* print comment, if any */
    214  1.45    rillig 	    int target_col = ps.com_col;
    215  1.52    rillig 	    char *com_st = com.s;
    216  1.19     kamil 
    217  1.45    rillig 	    target_col += ps.comment_delta;
    218  1.19     kamil 	    while (*com_st == '\t')	/* consider original indentation in
    219  1.46    rillig 				 * case this is a box comment */
    220  1.45    rillig 		com_st++, target_col += opt.tabsize;
    221  1.45    rillig 	    while (target_col <= 0)
    222  1.19     kamil 		if (*com_st == ' ')
    223  1.45    rillig 		    target_col++, com_st++;
    224  1.19     kamil 		else if (*com_st == '\t') {
    225  1.45    rillig 		    target_col = opt.tabsize * (1 + (target_col - 1) / opt.tabsize) + 1;
    226  1.19     kamil 		    com_st++;
    227  1.30    rillig 		} else
    228  1.45    rillig 		    target_col = 1;
    229  1.45    rillig 	    if (cur_col > target_col) {	/* if comment can't fit on this line,
    230  1.46    rillig 				 * put it on next line */
    231  1.28    rillig 		output_char('\n');
    232  1.19     kamil 		cur_col = 1;
    233  1.58    rillig 		ps.stats.lines++;
    234  1.19     kamil 	    }
    235  1.52    rillig 	    while (com.e > com_st && isspace((unsigned char)com.e[-1]))
    236  1.52    rillig 		com.e--;
    237  1.45    rillig 	    (void)output_indent(cur_col - 1, target_col - 1);
    238  1.52    rillig 	    output_range(com_st, com.e);
    239  1.19     kamil 	    ps.comment_delta = ps.n_comment_delta;
    240  1.58    rillig 	    ps.stats.comment_lines++;
    241  1.19     kamil 	}
    242  1.19     kamil 	if (ps.use_ff)
    243  1.28    rillig 	    output_char('\014');
    244  1.19     kamil 	else
    245  1.28    rillig 	    output_char('\n');
    246  1.58    rillig 	ps.stats.lines++;
    247  1.19     kamil 	if (ps.just_saw_decl == 1 && opt.blanklines_after_declarations) {
    248  1.60    rillig 	    prefix_blankline_requested = true;
    249  1.19     kamil 	    ps.just_saw_decl = 0;
    250  1.30    rillig 	} else
    251  1.19     kamil 	    prefix_blankline_requested = postfix_blankline_requested;
    252  1.60    rillig 	postfix_blankline_requested = false;
    253  1.19     kamil     }
    254  1.24    rillig 
    255  1.24    rillig     /* keep blank lines after '//' comments */
    256  1.52    rillig     if (com.e - com.s > 1 && com.s[1] == '/'
    257  1.56    rillig 	&& token.s < token.e && isspace((unsigned char)token.s[0]))
    258  1.56    rillig 	output_range(token.s, token.e);
    259  1.24    rillig 
    260  1.46    rillig     ps.decl_on_line = ps.in_decl; /* if we are in the middle of a declaration,
    261  1.46    rillig 				 * remember that fact for proper comment
    262  1.46    rillig 				 * indentation */
    263  1.60    rillig     ps.ind_stmt = ps.in_stmt && !ps.in_decl; /* next line should be indented if
    264  1.60    rillig 				 * we have not completed this stmt and if we
    265  1.60    rillig 				 * are not in the middle of a declaration */
    266  1.19     kamil     ps.use_ff = false;
    267  1.60    rillig     ps.dumped_decl_indent = false;
    268  1.54    rillig     *(lab.e = lab.s) = '\0';	/* reset buffers */
    269  1.55    rillig     *(code.e = code.s) = '\0';
    270  1.52    rillig     *(com.e = com.s = com.buf + 1) = '\0';
    271  1.64    rillig     ps.ind_level = ps.ind_level_follow;
    272  1.19     kamil     ps.paren_level = ps.p_l_follow;
    273  1.36    rillig     if (ps.paren_level > 0) {
    274  1.36    rillig         /* TODO: explain what negative indentation means */
    275  1.31    rillig 	paren_indent = -ps.paren_indents[ps.paren_level - 1];
    276  1.36    rillig 	debug_println("paren_indent is now %d", paren_indent);
    277  1.36    rillig     }
    278  1.60    rillig     not_first_line = true;
    279   1.1       cgd }
    280   1.1       cgd 
    281   1.5     lukem int
    282  1.39    rillig compute_code_indent(void)
    283   1.1       cgd {
    284  1.43    rillig     int target_ind = opt.indent_size * ps.ind_level;
    285  1.19     kamil 
    286  1.39    rillig     if (ps.paren_level != 0) {
    287  1.19     kamil 	if (!opt.lineup_to_parens)
    288  1.49    rillig 	    if (2 * opt.continuation_indent == opt.indent_size)
    289  1.49    rillig 		target_ind += opt.continuation_indent;
    290  1.49    rillig 	    else
    291  1.49    rillig 		target_ind += opt.continuation_indent * ps.paren_level;
    292  1.19     kamil 	else if (opt.lineup_to_parens_always)
    293  1.39    rillig 	    /*
    294  1.39    rillig 	     * XXX: where does this '- 1' come from?  It looks strange but is
    295  1.39    rillig 	     * nevertheless needed for proper indentation, as demonstrated in
    296  1.39    rillig 	     * the test opt-lpl.0.
    297  1.39    rillig 	     */
    298  1.39    rillig 	    target_ind = paren_indent - 1;
    299  1.19     kamil 	else {
    300  1.19     kamil 	    int w;
    301  1.31    rillig 	    int t = paren_indent;
    302   1.1       cgd 
    303  1.55    rillig 	    if ((w = 1 + indentation_after(t - 1, code.s) - opt.max_line_length) > 0
    304  1.55    rillig 		&& 1 + indentation_after(target_ind, code.s) <= opt.max_line_length) {
    305  1.19     kamil 		t -= w + 1;
    306  1.39    rillig 		if (t > target_ind + 1)
    307  1.39    rillig 		    target_ind = t - 1;
    308  1.30    rillig 	    } else
    309  1.39    rillig 		target_ind = t - 1;
    310  1.19     kamil 	}
    311  1.30    rillig     } else if (ps.ind_stmt)
    312  1.39    rillig 	target_ind += opt.continuation_indent;
    313  1.39    rillig     return target_ind;
    314   1.1       cgd }
    315   1.1       cgd 
    316   1.5     lukem int
    317  1.38    rillig compute_label_indent(void)
    318   1.1       cgd {
    319  1.38    rillig     if (ps.pcase)
    320  1.43    rillig 	return (int) (case_ind * opt.indent_size);
    321  1.54    rillig     if (lab.s[0] == '#')
    322  1.38    rillig         return 0;
    323  1.43    rillig     return opt.indent_size * (ps.ind_level - label_offset);
    324   1.1       cgd }
    325   1.1       cgd 
    326  1.53    rillig static void
    327  1.53    rillig skip_hspace(const char **pp)
    328  1.53    rillig {
    329  1.53    rillig     while (**pp == ' ' || **pp == '\t')
    330  1.53    rillig 	(*pp)++;
    331  1.53    rillig }
    332  1.53    rillig 
    333  1.53    rillig static void
    334  1.53    rillig parse_indent_comment(void)
    335  1.53    rillig {
    336  1.53    rillig     int on_off = 0;		/* 0 = keep, 1 = ON, 2 = OFF */
    337  1.53    rillig 
    338  1.53    rillig     const char *p = in_buffer;
    339  1.53    rillig 
    340  1.53    rillig     skip_hspace(&p);
    341  1.53    rillig 
    342  1.53    rillig     if (!(*p == '/' && p[1] == '*'))
    343  1.53    rillig 	return;
    344  1.53    rillig     p += 2;
    345  1.53    rillig 
    346  1.53    rillig     skip_hspace(&p);
    347  1.53    rillig 
    348  1.53    rillig     if (!(p[0] == 'I' && p[1] == 'N' && p[2] == 'D'
    349  1.53    rillig 	  && p[3] == 'E' && p[4] == 'N' && p[5] == 'T'))
    350  1.53    rillig 	return;
    351  1.53    rillig     p += 6;
    352  1.53    rillig 
    353  1.53    rillig     skip_hspace(&p);
    354  1.53    rillig 
    355  1.53    rillig     if (*p == '*')
    356  1.53    rillig 	on_off = 1;
    357  1.53    rillig     else if (*p == 'O') {
    358  1.53    rillig 	if (*++p == 'N')
    359  1.53    rillig 	    p++, on_off = 1;
    360  1.53    rillig 	else if (*p == 'F' && *++p == 'F')
    361  1.53    rillig 	    p++, on_off = 2;
    362  1.53    rillig     }
    363  1.53    rillig     if (on_off == 0)
    364  1.53    rillig 	return;
    365  1.53    rillig 
    366  1.53    rillig     skip_hspace(&p);
    367  1.53    rillig 
    368  1.53    rillig     if (!(p[0] == '*' && p[1] == '/' && p[2] == '\n'))
    369  1.53    rillig 	return;
    370  1.53    rillig 
    371  1.55    rillig     if (com.s != com.e || lab.s != lab.e || code.s != code.e)
    372  1.53    rillig 	dump_line();
    373  1.53    rillig 
    374  1.62    rillig     if (!(inhibit_formatting = (on_off == 2))) {
    375  1.53    rillig 	n_real_blanklines = 0;
    376  1.60    rillig 	postfix_blankline_requested = false;
    377  1.60    rillig 	prefix_blankline_requested = false;
    378  1.53    rillig 	suppress_blanklines = 1;
    379  1.53    rillig     }
    380  1.53    rillig }
    381   1.1       cgd 
    382   1.1       cgd /*
    383   1.1       cgd  * Copyright (C) 1976 by the Board of Trustees of the University of Illinois
    384   1.5     lukem  *
    385   1.1       cgd  * All rights reserved
    386   1.5     lukem  *
    387  1.33    rillig  * FUNCTION: Reads one block of input into the input buffer
    388   1.1       cgd  */
    389   1.5     lukem void
    390  1.11       wiz fill_buffer(void)
    391   1.1       cgd {				/* this routine reads stuff from the input */
    392  1.19     kamil     char *p;
    393  1.19     kamil     int i;
    394  1.19     kamil     FILE *f = input;
    395  1.19     kamil 
    396  1.19     kamil     if (bp_save != NULL) {	/* there is a partly filled input buffer left */
    397  1.19     kamil 	buf_ptr = bp_save;	/* do not read anything, just switch buffers */
    398  1.19     kamil 	buf_end = be_save;
    399  1.19     kamil 	bp_save = be_save = NULL;
    400  1.47    rillig 	debug_println("switched buf_ptr back to bp_save");
    401  1.19     kamil 	if (buf_ptr < buf_end)
    402  1.19     kamil 	    return;		/* only return if there is really something in
    403   1.1       cgd 				 * this buffer */
    404  1.19     kamil     }
    405  1.19     kamil     for (p = in_buffer;;) {
    406  1.19     kamil 	if (p >= in_buffer_limit) {
    407  1.48    rillig 	    size_t size = (in_buffer_limit - in_buffer) * 2 + 10;
    408  1.48    rillig 	    size_t offset = p - in_buffer;
    409  1.57    rillig 	    in_buffer = xrealloc(in_buffer, size);
    410  1.19     kamil 	    p = in_buffer + offset;
    411  1.19     kamil 	    in_buffer_limit = in_buffer + size - 2;
    412  1.19     kamil 	}
    413  1.19     kamil 	if ((i = getc(f)) == EOF) {
    414  1.37    rillig 	    *p++ = ' ';
    415  1.37    rillig 	    *p++ = '\n';
    416  1.37    rillig 	    had_eof = true;
    417  1.37    rillig 	    break;
    418   1.1       cgd 	}
    419  1.19     kamil 	if (i != '\0')
    420  1.19     kamil 	    *p++ = i;
    421  1.19     kamil 	if (i == '\n')
    422  1.37    rillig 	    break;
    423  1.19     kamil     }
    424  1.19     kamil     buf_ptr = in_buffer;
    425  1.19     kamil     buf_end = p;
    426  1.19     kamil     if (p - in_buffer > 2 && p[-2] == '/' && p[-3] == '*') {
    427  1.19     kamil 	if (in_buffer[3] == 'I' && strncmp(in_buffer, "/**INDENT**", 11) == 0)
    428  1.19     kamil 	    fill_buffer();	/* flush indent error message */
    429  1.53    rillig 	else
    430  1.53    rillig 	    parse_indent_comment();
    431  1.19     kamil     }
    432  1.19     kamil     if (inhibit_formatting) {
    433  1.19     kamil 	p = in_buffer;
    434  1.25    rillig 	do {
    435  1.28    rillig 	    output_char(*p);
    436  1.25    rillig 	} while (*p++ != '\n');
    437  1.19     kamil     }
    438   1.1       cgd }
    439  1.19     kamil 
    440   1.1       cgd int
    441  1.40    rillig indentation_after_range(int ind, const char *start, const char *end)
    442   1.1       cgd {
    443  1.40    rillig     for (const char *p = start; *p != '\0' && p != end; ++p) {
    444  1.40    rillig 	if (*p == '\n' || *p == '\f')
    445  1.40    rillig 	    ind = 0;
    446  1.40    rillig 	else if (*p == '\t')
    447  1.40    rillig 	    ind = opt.tabsize * (ind / opt.tabsize + 1);
    448  1.40    rillig 	else if (*p == '\b')
    449  1.40    rillig 	    --ind;
    450  1.40    rillig 	else
    451  1.40    rillig 	    ++ind;
    452  1.40    rillig     }
    453  1.40    rillig     return ind;
    454  1.40    rillig }
    455   1.1       cgd 
    456  1.40    rillig int
    457  1.40    rillig indentation_after(int ind, const char *s)
    458  1.40    rillig {
    459  1.40    rillig     return indentation_after_range(ind, s, NULL);
    460  1.40    rillig }
    461  1.19     kamil 
    462   1.5     lukem void
    463  1.20  christos diag(int level, const char *msg, ...)
    464   1.1       cgd {
    465  1.20  christos     va_list ap;
    466  1.20  christos     const char *s, *e;
    467  1.20  christos 
    468  1.60    rillig     if (level != 0)
    469  1.19     kamil 	found_err = 1;
    470   1.1       cgd 
    471  1.19     kamil     if (output == stdout) {
    472  1.20  christos 	s = "/**INDENT** ";
    473  1.20  christos 	e = " */";
    474  1.20  christos     } else {
    475  1.20  christos 	s = e = "";
    476  1.19     kamil     }
    477   1.1       cgd 
    478  1.20  christos     va_start(ap, msg);
    479  1.20  christos     fprintf(stderr, "%s%s@%d: ", s, level == 0 ? "Warning" : "Error", line_no);
    480  1.20  christos     vfprintf(stderr, msg, ap);
    481  1.20  christos     fprintf(stderr, "%s\n", e);
    482  1.20  christos     va_end(ap);
    483   1.1       cgd }
    484