[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] indentation with macro ends
From: |
Ralph Corderoy |
Subject: |
Re: [Groff] indentation with macro ends |
Date: |
Sun, 21 Oct 2001 10:06:50 +0100 |
Hi,
> I did not find the place in the source where this can be fixed, tho
> that might be easily done.
Would it be in src/roff/troff/input.cc's do_define_macro function?
if (bol && c == '.') {
const char *s = term.contents();
int d = 0;
// see if it matches term
int i;
for (i = 0; s[i] != 0; i++) {
d = get_copy(&n);
if ((unsigned char)s[i] != d)
break;
}
if (s[i] == 0
&& ((i == 2 && compatible_flag)
|| (d = get_copy(&n)) == ' '
|| d == '\n')) { // we found it
Ralph.
- [Groff] indentation with macro ends, Bernd Warken, 2001/10/20
- Re: [Groff] indentation with macro ends,
Ralph Corderoy <=
- Re: [Groff] indentation with macro ends, Bernd Warken, 2001/10/21
- Re: [Groff] indentation with macro ends, Ralph Corderoy, 2001/10/21
- Re: [Groff] indentation with macro ends, Werner LEMBERG, 2001/10/21
- Re: [Groff] indentation with macro ends, Gaius Mulley, 2001/10/22
- Re: [Groff] indentation with macro ends, Gaius Mulley, 2001/10/22
- Re: [Groff] indentation with macro ends, Werner LEMBERG, 2001/10/22
Re: [Groff] indentation with macro ends, Bernd Warken, 2001/10/22