Skip to content

Commit

Permalink
Typo: unclosed comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwsw committed Sep 16, 2023
1 parent c142abe commit 349e6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion position.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static int pos_shift(POSITION linepos, int choff)
pos = forw_raw_line_len(linepos, choff, &line, &line_len);
if (pos == NULL_POSITION || line_len != choff)
return -1;
cvt_ops = get_cvt_ops(0); /* {{ Passing 0 ignores SRCH_NO_REGEX; does it matter? }}
cvt_ops = get_cvt_ops(0); /* {{ Passing 0 ignores SRCH_NO_REGEX; does it matter? }} */
/* {{ It would be nice to be able to call cvt_text with dst=NULL, to avoid need to alloc a useless cline. }} */
cline = (char *) ecalloc(1, line_len);
cvt_text(cline, line, NULL, &line_len, cvt_ops);
Expand Down

0 comments on commit 349e6fe

Please sign in to comment.