tech@mandoc.bsd.lv
 help / color / mirror / Atom feed
From: Kristaps Dzonsons <kristaps@bsd.lv>
To: tech@mdocml.bsd.lv
Subject: Re: mdocml version 1.12.0 available
Date: Sun, 16 Oct 2011 13:01:24 +0200	[thread overview]
Message-ID: <4E9AB984.7060401@bsd.lv> (raw)
In-Reply-To: <20111016103504.GB27850@iris.usta.de>

> Index: man_validate.c
> ===================================================================
> RCS file: /cvs/src/usr.bin/mandoc/man_validate.c,v
> retrieving revision 1.47
> diff -u -p -r1.47 man_validate.c
> --- man_validate.c	18 Sep 2011 15:54:48 -0000	1.47
> +++ man_validate.c	16 Oct 2011 10:28:55 -0000
> @@ -209,12 +209,12 @@ check_text(CHKARGS)
>   {
>   	char		*cp, *p;
>
> -	cp = p = n->string;
> -	for (cp = p; NULL != (p = strchr(p, '\t')); p++) {
> -		if (MAN_LITERAL&  m->flags)
> -			continue;
> +	if (MAN_LITERAL&  m->flags)
> +		return;
> +
> +	cp = n->string;
> +	for (p = cp; NULL != (p = strchr(p, '\t')); p++)
>   		man_pmsg(m, n->line, (int)(p - cp), MANDOCERR_BADTAB);
> -	}

Ingo, Joerg,

I'm fine with these---thanks!  (Gah, what was I thinking!?)

Take care,

Kristaps
--
 To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv

      reply	other threads:[~2011-10-16 11:01 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <4E90B130.3080008@bsd.lv>
     [not found] ` <20111011145641.GA25314@britannica.bec.de>
2011-10-13  0:50   ` Ingo Schwarze
2011-10-13  9:55     ` Ulrich Spörlein
2011-10-15 15:02       ` Ingo Schwarze
2011-10-15 18:28         ` Joerg Sonnenberger
2011-10-16 10:35           ` Ingo Schwarze
2011-10-16 11:01             ` Kristaps Dzonsons [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E9AB984.7060401@bsd.lv \
    --to=kristaps@bsd.lv \
    --cc=tech@mdocml.bsd.lv \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).