xref: /freebsd/usr.bin/indent/pr_comment.c (revision 5e3934b15a2741b2de6b217e77dc9d798d740804)
170a3049eSPedro F. Giffuni /*-
2df57947fSPedro F. Giffuni  * SPDX-License-Identifier: BSD-4-Clause
3df57947fSPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1985 Sun Microsystems, Inc.
59b50d902SRodney W. Grimes  * Copyright (c) 1980, 1993
69b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
79b50d902SRodney W. Grimes  * All rights reserved.
89b50d902SRodney W. Grimes  *
99b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
109b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
119b50d902SRodney W. Grimes  * are met:
129b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
139b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
149b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
159b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
169b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
179b50d902SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
189b50d902SRodney W. Grimes  *    must display the following acknowledgement:
199b50d902SRodney W. Grimes  *	This product includes software developed by the University of
209b50d902SRodney W. Grimes  *	California, Berkeley and its contributors.
219b50d902SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
229b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
239b50d902SRodney W. Grimes  *    without specific prior written permission.
249b50d902SRodney W. Grimes  *
259b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
269b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
279b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
289b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
299b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
309b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
319b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
329b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
339b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
349b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
359b50d902SRodney W. Grimes  * SUCH DAMAGE.
369b50d902SRodney W. Grimes  */
37e026a48cSDavid E. O'Brien 
38e026a48cSDavid E. O'Brien #include <sys/cdefs.h>
39d0054952SPhilippe Charnier #include <err.h>
409b50d902SRodney W. Grimes #include <stdio.h>
419b50d902SRodney W. Grimes #include <stdlib.h>
4254d57555SPedro F. Giffuni #include <string.h>
439b50d902SRodney W. Grimes #include "indent_globs.h"
44f30beab3SPiotr Pawel Stefaniak #include "indent_codes.h"
457916863dSJens Schweikhardt #include "indent.h"
469b50d902SRodney W. Grimes /*
479b50d902SRodney W. Grimes  * NAME:
489b50d902SRodney W. Grimes  *	pr_comment
499b50d902SRodney W. Grimes  *
509b50d902SRodney W. Grimes  * FUNCTION:
519b50d902SRodney W. Grimes  *	This routine takes care of scanning and printing comments.
529b50d902SRodney W. Grimes  *
539b50d902SRodney W. Grimes  * ALGORITHM:
549b50d902SRodney W. Grimes  *	1) Decide where the comment should be aligned, and if lines should
559b50d902SRodney W. Grimes  *	   be broken.
569b50d902SRodney W. Grimes  *	2) If lines should not be broken and filled, just copy up to end of
579b50d902SRodney W. Grimes  *	   comment.
589b50d902SRodney W. Grimes  *	3) If lines should be filled, then scan thru input_buffer copying
599b50d902SRodney W. Grimes  *	   characters to com_buf.  Remember where the last blank, tab, or
609b50d902SRodney W. Grimes  *	   newline was.  When line is filled, print up to last blank and
619b50d902SRodney W. Grimes  *	   continue copying.
629b50d902SRodney W. Grimes  *
639b50d902SRodney W. Grimes  * HISTORY:
649b50d902SRodney W. Grimes  *	November 1976	D A Willcox of CAC	Initial coding
659b50d902SRodney W. Grimes  *	12/6/76		D A Willcox of CAC	Modification to handle
669b50d902SRodney W. Grimes  *						UNIX-style comments
679b50d902SRodney W. Grimes  *
689b50d902SRodney W. Grimes  */
699b50d902SRodney W. Grimes 
709b50d902SRodney W. Grimes /*
719b50d902SRodney W. Grimes  * this routine processes comments.  It makes an attempt to keep comments from
729b50d902SRodney W. Grimes  * going over the max line length.  If a line is too long, it moves everything
739b50d902SRodney W. Grimes  * from the last blank to the next comment line.  Blanks and tabs from the
749b50d902SRodney W. Grimes  * beginning of the input line are removed
759b50d902SRodney W. Grimes  */
769b50d902SRodney W. Grimes 
777916863dSJens Schweikhardt void
pr_comment(void)787916863dSJens Schweikhardt pr_comment(void)
799b50d902SRodney W. Grimes {
809b50d902SRodney W. Grimes     int         now_col;	/* column we are in now */
819b50d902SRodney W. Grimes     int         adj_max_col;	/* Adjusted max_col for when we decide to
829b50d902SRodney W. Grimes 				 * spill comments over the right margin */
839b50d902SRodney W. Grimes     char       *last_bl;	/* points to the last blank in the output
849b50d902SRodney W. Grimes 				 * buffer */
859b50d902SRodney W. Grimes     char       *t_ptr;		/* used for moving string */
86*7e53aaedSPiotr Pawel Stefaniak     int         break_delim = opt.comment_delimiter_on_blankline;
879b50d902SRodney W. Grimes     int         l_just_saw_decl = ps.just_saw_decl;
88*7e53aaedSPiotr Pawel Stefaniak 
89*7e53aaedSPiotr Pawel Stefaniak     adj_max_col = opt.max_col;
909b50d902SRodney W. Grimes     ps.just_saw_decl = 0;
91c917a54bSPedro F. Giffuni     last_bl = NULL;		/* no blanks found so far */
929b50d902SRodney W. Grimes     ps.box_com = false;		/* at first, assume that we are not in
939b50d902SRodney W. Grimes 					 * a boxed comment or some other
949b50d902SRodney W. Grimes 					 * comment that should not be touched */
959b50d902SRodney W. Grimes     ++ps.out_coms;		/* keep track of number of comments */
969b50d902SRodney W. Grimes 
979b50d902SRodney W. Grimes     /* Figure where to align and how to treat the comment */
989b50d902SRodney W. Grimes 
99*7e53aaedSPiotr Pawel Stefaniak     if (ps.col_1 && !opt.format_col1_comments) {	/* if comment starts in column
1009b50d902SRodney W. Grimes 						 * 1 it should not be touched */
1019b50d902SRodney W. Grimes 	ps.box_com = true;
10254d57555SPedro F. Giffuni 	break_delim = false;
1039b50d902SRodney W. Grimes 	ps.com_col = 1;
1049b50d902SRodney W. Grimes     }
1059b50d902SRodney W. Grimes     else {
106a5e1cac0SDavid E. O'Brien 	if (*buf_ptr == '-' || *buf_ptr == '*' ||
107*7e53aaedSPiotr Pawel Stefaniak 	    (*buf_ptr == '\n' && !opt.format_block_comments)) {
108a5e1cac0SDavid E. O'Brien 	    ps.box_com = true;	/* A comment with a '-' or '*' immediately
1097916863dSJens Schweikhardt 				 * after the /+* is assumed to be a boxed
110a5e1cac0SDavid E. O'Brien 				 * comment. A comment with a newline
1117916863dSJens Schweikhardt 				 * immediately after the /+* is assumed to
112a5e1cac0SDavid E. O'Brien 				 * be a block comment and is treated as a
113a5e1cac0SDavid E. O'Brien 				 * box comment unless format_block_comments
114a5e1cac0SDavid E. O'Brien 				 * is nonzero (the default). */
11554d57555SPedro F. Giffuni 	    break_delim = false;
1169b50d902SRodney W. Grimes 	}
1179b50d902SRodney W. Grimes 	if ( /* ps.bl_line && */ (s_lab == e_lab) && (s_code == e_code)) {
1189b50d902SRodney W. Grimes 	    /* klg: check only if this line is blank */
1199b50d902SRodney W. Grimes 	    /*
1209b50d902SRodney W. Grimes 	     * If this (*and previous lines are*) blank, dont put comment way
1219b50d902SRodney W. Grimes 	     * out at left
1229b50d902SRodney W. Grimes 	     */
123*7e53aaedSPiotr Pawel Stefaniak 	    ps.com_col = (ps.ind_level - opt.unindent_displace) * opt.ind_size + 1;
124*7e53aaedSPiotr Pawel Stefaniak 	    adj_max_col = opt.block_comment_max_col;
1259b50d902SRodney W. Grimes 	    if (ps.com_col <= 1)
126*7e53aaedSPiotr Pawel Stefaniak 		ps.com_col = 1 + !opt.format_col1_comments;
1279b50d902SRodney W. Grimes 	}
1289b50d902SRodney W. Grimes 	else {
12990af6a72SJuli Mallett 	    int target_col;
13054d57555SPedro F. Giffuni 	    break_delim = false;
1319b50d902SRodney W. Grimes 	    if (s_code != e_code)
1329b50d902SRodney W. Grimes 		target_col = count_spaces(compute_code_target(), s_code);
1339b50d902SRodney W. Grimes 	    else {
1349b50d902SRodney W. Grimes 		target_col = 1;
1359b50d902SRodney W. Grimes 		if (s_lab != e_lab)
1369b50d902SRodney W. Grimes 		    target_col = count_spaces(compute_label_target(), s_lab);
1379b50d902SRodney W. Grimes 	    }
138*7e53aaedSPiotr Pawel Stefaniak 	    ps.com_col = ps.decl_on_line || ps.ind_level == 0 ? opt.decl_com_ind : opt.com_ind;
1393e2c1447SPiotr Pawel Stefaniak 	    if (ps.com_col <= target_col)
140*7e53aaedSPiotr Pawel Stefaniak 		ps.com_col = opt.tabsize * (1 + (target_col - 1) / opt.tabsize) + 1;
1419b50d902SRodney W. Grimes 	    if (ps.com_col + 24 > adj_max_col)
1429b50d902SRodney W. Grimes 		adj_max_col = ps.com_col + 24;
1439b50d902SRodney W. Grimes 	}
1449b50d902SRodney W. Grimes     }
1459b50d902SRodney W. Grimes     if (ps.box_com) {
146458051a5SPedro F. Giffuni 	/*
147458051a5SPedro F. Giffuni 	 * Find out how much indentation there was originally, because that
148458051a5SPedro F. Giffuni 	 * much will have to be ignored by pad_output() in dump_line(). This
149458051a5SPedro F. Giffuni 	 * is a box comment, so nothing changes -- not even indentation.
150458051a5SPedro F. Giffuni 	 *
151458051a5SPedro F. Giffuni 	 * The comment we're about to read usually comes from in_buffer,
152458051a5SPedro F. Giffuni 	 * unless it has been copied into save_com.
153458051a5SPedro F. Giffuni 	 */
1543c51c3cfSPiotr Pawel Stefaniak 	char *start;
1553c51c3cfSPiotr Pawel Stefaniak 
1563c51c3cfSPiotr Pawel Stefaniak 	start = buf_ptr >= save_com && buf_ptr < save_com + sc_size ?
1573c51c3cfSPiotr Pawel Stefaniak 	    sc_buf : in_buffer;
1583c51c3cfSPiotr Pawel Stefaniak 	ps.n_comment_delta = 1 - count_spaces_until(1, start, buf_ptr - 2);
1599b50d902SRodney W. Grimes     }
1609b50d902SRodney W. Grimes     else {
1619b50d902SRodney W. Grimes 	ps.n_comment_delta = 0;
1629b50d902SRodney W. Grimes 	while (*buf_ptr == ' ' || *buf_ptr == '\t')
1639b50d902SRodney W. Grimes 	    buf_ptr++;
1649b50d902SRodney W. Grimes     }
1659b50d902SRodney W. Grimes     ps.comment_delta = 0;
1667916863dSJens Schweikhardt     *e_com++ = '/';		/* put '/' followed by '*' into buffer */
1679b50d902SRodney W. Grimes     *e_com++ = '*';
1689b50d902SRodney W. Grimes     if (*buf_ptr != ' ' && !ps.box_com)
1699b50d902SRodney W. Grimes 	*e_com++ = ' ';
1709b50d902SRodney W. Grimes 
1716daffe6eSPedro F. Giffuni     /*
1726daffe6eSPedro F. Giffuni      * Don't put a break delimiter if this is a one-liner that won't wrap.
1736daffe6eSPedro F. Giffuni      */
1746daffe6eSPedro F. Giffuni     if (break_delim)
17554d57555SPedro F. Giffuni 	for (t_ptr = buf_ptr; *t_ptr != '\0' && *t_ptr != '\n'; t_ptr++) {
17654d57555SPedro F. Giffuni 	    if (t_ptr >= buf_end)
17754d57555SPedro F. Giffuni 		fill_buffer();
17854d57555SPedro F. Giffuni 	    if (t_ptr[0] == '*' && t_ptr[1] == '/') {
1796daffe6eSPedro F. Giffuni 		if (adj_max_col >= count_spaces_until(ps.com_col, buf_ptr, t_ptr + 2))
18054d57555SPedro F. Giffuni 		    break_delim = false;
18154d57555SPedro F. Giffuni 		break;
1829b50d902SRodney W. Grimes 	    }
18354d57555SPedro F. Giffuni 	}
18454d57555SPedro F. Giffuni 
18554d57555SPedro F. Giffuni     if (break_delim) {
18654d57555SPedro F. Giffuni 	char       *t = e_com;
18754d57555SPedro F. Giffuni 	e_com = s_com + 2;
18854d57555SPedro F. Giffuni 	*e_com = 0;
189*7e53aaedSPiotr Pawel Stefaniak 	if (opt.blanklines_before_blockcomments && ps.last_token != lbrace)
19054d57555SPedro F. Giffuni 	    prefix_blankline_requested = 1;
19154d57555SPedro F. Giffuni 	dump_line();
19269e66b43SPedro F. Giffuni 	e_com = s_com = t;
193*7e53aaedSPiotr Pawel Stefaniak 	if (!ps.box_com && opt.star_comment_cont)
19469e66b43SPedro F. Giffuni 	    *e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
19554d57555SPedro F. Giffuni     }
19654d57555SPedro F. Giffuni 
1979b50d902SRodney W. Grimes     /* Start to copy the comment */
1989b50d902SRodney W. Grimes 
1999b50d902SRodney W. Grimes     while (1) {			/* this loop will go until the comment is
2009b50d902SRodney W. Grimes 				 * copied */
2019b50d902SRodney W. Grimes 	switch (*buf_ptr) {	/* this checks for various spcl cases */
2029b50d902SRodney W. Grimes 	case 014:		/* check for a form feed */
2039de29bfbSPiotr Pawel Stefaniak 	    CHECK_SIZE_COM(3);
2049b50d902SRodney W. Grimes 	    if (!ps.box_com) {	/* in a text comment, break the line here */
2059b50d902SRodney W. Grimes 		ps.use_ff = true;
2069b50d902SRodney W. Grimes 		/* fix so dump_line uses a form feed */
2079b50d902SRodney W. Grimes 		dump_line();
208c917a54bSPedro F. Giffuni 		last_bl = NULL;
209*7e53aaedSPiotr Pawel Stefaniak 		if (!ps.box_com && opt.star_comment_cont)
21069e66b43SPedro F. Giffuni 		    *e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
21169e66b43SPedro F. Giffuni 		while (*++buf_ptr == ' ' || *buf_ptr == '\t')
21269e66b43SPedro F. Giffuni 		    ;
2139b50d902SRodney W. Grimes 	    }
2149b50d902SRodney W. Grimes 	    else {
2159b50d902SRodney W. Grimes 		if (++buf_ptr >= buf_end)
2169b50d902SRodney W. Grimes 		    fill_buffer();
2179b50d902SRodney W. Grimes 		*e_com++ = 014;
2189b50d902SRodney W. Grimes 	    }
2199b50d902SRodney W. Grimes 	    break;
2209b50d902SRodney W. Grimes 
2219b50d902SRodney W. Grimes 	case '\n':
2229b50d902SRodney W. Grimes 	    if (had_eof) {	/* check for unexpected eof */
2239b50d902SRodney W. Grimes 		printf("Unterminated comment\n");
2249b50d902SRodney W. Grimes 		dump_line();
2259b50d902SRodney W. Grimes 		return;
2269b50d902SRodney W. Grimes 	    }
2278ad92a65SPedro F. Giffuni 	    last_bl = NULL;
2289de29bfbSPiotr Pawel Stefaniak 	    CHECK_SIZE_COM(4);
2299b50d902SRodney W. Grimes 	    if (ps.box_com || ps.last_nl) {	/* if this is a boxed comment,
2309b50d902SRodney W. Grimes 						 * we dont ignore the newline */
23169e66b43SPedro F. Giffuni 		if (s_com == e_com)
2329b50d902SRodney W. Grimes 		    *e_com++ = ' ';
2339b50d902SRodney W. Grimes 		if (!ps.box_com && e_com - s_com > 3) {
2349b50d902SRodney W. Grimes 		    dump_line();
235*7e53aaedSPiotr Pawel Stefaniak 		    if (opt.star_comment_cont)
23669e66b43SPedro F. Giffuni 			*e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
2379b50d902SRodney W. Grimes 		}
2389b50d902SRodney W. Grimes 		dump_line();
239*7e53aaedSPiotr Pawel Stefaniak 		if (!ps.box_com && opt.star_comment_cont)
24069e66b43SPedro F. Giffuni 		    *e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
2419b50d902SRodney W. Grimes 	    }
2429b50d902SRodney W. Grimes 	    else {
2439b50d902SRodney W. Grimes 		ps.last_nl = 1;
2449b50d902SRodney W. Grimes 		if (*(e_com - 1) == ' ' || *(e_com - 1) == '\t')
2459b50d902SRodney W. Grimes 		    last_bl = e_com - 1;
2469b50d902SRodney W. Grimes 		/*
2479b50d902SRodney W. Grimes 		 * if there was a space at the end of the last line, remember
2489b50d902SRodney W. Grimes 		 * where it was
2499b50d902SRodney W. Grimes 		 */
2509b50d902SRodney W. Grimes 		else {		/* otherwise, insert one */
2519b50d902SRodney W. Grimes 		    last_bl = e_com;
2529b50d902SRodney W. Grimes 		    *e_com++ = ' ';
2539b50d902SRodney W. Grimes 		}
2549b50d902SRodney W. Grimes 	    }
2559b50d902SRodney W. Grimes 	    ++line_no;		/* keep track of input line number */
2569b50d902SRodney W. Grimes 	    if (!ps.box_com) {
2579b50d902SRodney W. Grimes 		int         nstar = 1;
2589b50d902SRodney W. Grimes 		do {		/* flush any blanks and/or tabs at start of
2599b50d902SRodney W. Grimes 				 * next line */
2609b50d902SRodney W. Grimes 		    if (++buf_ptr >= buf_end)
2619b50d902SRodney W. Grimes 			fill_buffer();
2629b50d902SRodney W. Grimes 		    if (*buf_ptr == '*' && --nstar >= 0) {
2639b50d902SRodney W. Grimes 			if (++buf_ptr >= buf_end)
2649b50d902SRodney W. Grimes 			    fill_buffer();
2659b50d902SRodney W. Grimes 			if (*buf_ptr == '/')
2669b50d902SRodney W. Grimes 			    goto end_of_comment;
2679b50d902SRodney W. Grimes 		    }
2689b50d902SRodney W. Grimes 		} while (*buf_ptr == ' ' || *buf_ptr == '\t');
2699b50d902SRodney W. Grimes 	    }
2709b50d902SRodney W. Grimes 	    else if (++buf_ptr >= buf_end)
2719b50d902SRodney W. Grimes 		fill_buffer();
2729b50d902SRodney W. Grimes 	    break;		/* end of case for newline */
2739b50d902SRodney W. Grimes 
2749b50d902SRodney W. Grimes 	case '*':		/* must check for possibility of being at end
2759b50d902SRodney W. Grimes 				 * of comment */
2769b50d902SRodney W. Grimes 	    if (++buf_ptr >= buf_end)	/* get to next char after * */
2779b50d902SRodney W. Grimes 		fill_buffer();
2789de29bfbSPiotr Pawel Stefaniak 	    CHECK_SIZE_COM(4);
2799b50d902SRodney W. Grimes 	    if (*buf_ptr == '/') {	/* it is the end!!! */
2809b50d902SRodney W. Grimes 	end_of_comment:
2819b50d902SRodney W. Grimes 		if (++buf_ptr >= buf_end)
2829b50d902SRodney W. Grimes 		    fill_buffer();
28354d57555SPedro F. Giffuni 		if (break_delim) {
28454d57555SPedro F. Giffuni 		    if (e_com > s_com + 3) {
2859b50d902SRodney W. Grimes 			dump_line();
28654d57555SPedro F. Giffuni 		    }
28769e66b43SPedro F. Giffuni 		    else
28869e66b43SPedro F. Giffuni 			s_com = e_com;
28969e66b43SPedro F. Giffuni 		    *e_com++ = ' ';
2909b50d902SRodney W. Grimes 		}
291909f007fSPedro F. Giffuni 		if (e_com[-1] != ' ' && e_com[-1] != '\t' && !ps.box_com)
29269e66b43SPedro F. Giffuni 		    *e_com++ = ' ';	/* ensure blank before end */
29369e66b43SPedro F. Giffuni 		*e_com++ = '*', *e_com++ = '/', *e_com = '\0';
2949b50d902SRodney W. Grimes 		ps.just_saw_decl = l_just_saw_decl;
2959b50d902SRodney W. Grimes 		return;
2969b50d902SRodney W. Grimes 	    }
29754d57555SPedro F. Giffuni 	    else		/* handle isolated '*' */
2989b50d902SRodney W. Grimes 		*e_com++ = '*';
2999b50d902SRodney W. Grimes 	    break;
3009b50d902SRodney W. Grimes 	default:		/* we have a random char */
30154d57555SPedro F. Giffuni 	    now_col = count_spaces_until(ps.com_col, s_com, e_com);
30254d57555SPedro F. Giffuni 	    do {
3039de29bfbSPiotr Pawel Stefaniak 		CHECK_SIZE_COM(1);
3049b50d902SRodney W. Grimes 		*e_com = *buf_ptr++;
3059b50d902SRodney W. Grimes 		if (buf_ptr >= buf_end)
3069b50d902SRodney W. Grimes 		    fill_buffer();
3079b50d902SRodney W. Grimes 		if (*e_com == ' ' || *e_com == '\t')
30854d57555SPedro F. Giffuni 		    last_bl = e_com;	/* remember we saw a blank */
3099b50d902SRodney W. Grimes 		++e_com;
31054d57555SPedro F. Giffuni 		now_col++;
31154d57555SPedro F. Giffuni 	    } while (!memchr("*\n\r\b\t", *buf_ptr, 6) &&
31269e66b43SPedro F. Giffuni 		(now_col <= adj_max_col || !last_bl));
31354d57555SPedro F. Giffuni 	    ps.last_nl = false;
314267c7470SPedro F. Giffuni 	    if (now_col > adj_max_col && !ps.box_com && e_com[-1] > ' ') {
3159b50d902SRodney W. Grimes 		/*
3169b50d902SRodney W. Grimes 		 * the comment is too long, it must be broken up
3179b50d902SRodney W. Grimes 		 */
31869e66b43SPedro F. Giffuni 		if (last_bl == NULL) {
31969e66b43SPedro F. Giffuni 		    dump_line();
320*7e53aaedSPiotr Pawel Stefaniak 		    if (!ps.box_com && opt.star_comment_cont)
32169e66b43SPedro F. Giffuni 			*e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
32269e66b43SPedro F. Giffuni 		    break;
3239b50d902SRodney W. Grimes 		}
32469e66b43SPedro F. Giffuni 		*e_com = '\0';
3259b50d902SRodney W. Grimes 		e_com = last_bl;
3269b50d902SRodney W. Grimes 		dump_line();
327*7e53aaedSPiotr Pawel Stefaniak 		if (!ps.box_com && opt.star_comment_cont)
32869e66b43SPedro F. Giffuni 		    *e_com++ = ' ', *e_com++ = '*', *e_com++ = ' ';
32969e66b43SPedro F. Giffuni 		for (t_ptr = last_bl + 1; *t_ptr == ' ' || *t_ptr == '\t';
33069e66b43SPedro F. Giffuni 		    t_ptr++)
33169e66b43SPedro F. Giffuni 			;
332c917a54bSPedro F. Giffuni 		last_bl = NULL;
3339de29bfbSPiotr Pawel Stefaniak 		/*
3349de29bfbSPiotr Pawel Stefaniak 		 * t_ptr will be somewhere between e_com (dump_line() reset)
3359de29bfbSPiotr Pawel Stefaniak 		 * and l_com. So it's safe to copy byte by byte from t_ptr
3369de29bfbSPiotr Pawel Stefaniak 		 * to e_com without any CHECK_SIZE_COM().
3379de29bfbSPiotr Pawel Stefaniak 		 */
33869e66b43SPedro F. Giffuni 		while (*t_ptr != '\0') {
3399b50d902SRodney W. Grimes 		    if (*t_ptr == ' ' || *t_ptr == '\t')
3409b50d902SRodney W. Grimes 			last_bl = e_com;
3419b50d902SRodney W. Grimes 		    *e_com++ = *t_ptr++;
3429b50d902SRodney W. Grimes 		}
3439b50d902SRodney W. Grimes 	    }
3449b50d902SRodney W. Grimes 	    break;
3459b50d902SRodney W. Grimes 	}
3469b50d902SRodney W. Grimes     }
3479b50d902SRodney W. Grimes }
348