diff options
author | rhlabs <rhlabs> | 1998-03-03 22:29:26 +0000 |
---|---|---|
committer | rhlabs <rhlabs> | 1998-03-03 22:29:26 +0000 |
commit | 8ddd248e79ac6d516b9222f784d7d5035ec9d71b (patch) | |
tree | e26d4ae414bbb3b4e18291fc151efd283d80eb86 /src | |
parent | 5726f0f7af10a8aefa9c998aa3522d2f98edfde3 (diff) | |
download | yelp-8ddd248e79ac6d516b9222f784d7d5035ec9d71b.tar.gz |
Final fixes to man page handling.
Dr Mike <msf@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/man2html/yelp-man2html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/man2html/yelp-man2html.c b/src/man2html/yelp-man2html.c index ed0e5212..05bb0fa1 100644 --- a/src/man2html/yelp-man2html.c +++ b/src/man2html/yelp-man2html.c @@ -2223,7 +2223,7 @@ static char char *endwith="..\n"; i=3; c=c+j; - if (*c!='\n') { + if (*c!='\n' && strncmp(c, "\\\"", 2)) { endwith=c-1;i=1; c[-1]='.'; while (*c && *c!='\n') { |