Difference between revisions of "Linecon"

From Mailutils
Jump to navigationJump to search
(Initial revision)
(No difference)

Revision as of 15:37, 15 December 2010

Linecon is a Mailutils filter implementing a familiar UNIX line-continuation facility. It removes from the input stream any newline character immediately preceded by a backslash. This filter operates only in decode mode.

The creation sequence allows for the following option:

-i STR

This option enables the line number information facility. This facility emits current input line number (prefixed with STR) after each contiguous sequence of one or more removed newline characters. It is useful when used in conjunction with some parser which is supposed to identify eventual erroneous lines with their input line number. The following example creates a read-only instance of this filter with the line number information facility enabled:

  int rc;          /* Return code */
  mu_stream_t flt; /* Filter stream */
  mu_stream_t input; /* Input stream */
  char *argv[] = { "linecon", "-i", "#line ", NULL },

  initialize_input_stream (&stream);
  rc = mu_filter_stream_create_args (&flt, input, argv[0], MU_FILTER_DECODE, MU_STREAM_READ, 3, argv);