summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2001-02-22 09:10:23 +0000
committerGeorge Lebl <jirka@src.gnome.org>2001-02-22 09:10:23 +0000
commit4ab88ac6ebc7e501971256c7e7000ec14f3f1b09 (patch)
tree7525da9448faaba7cd334f1d243598140e1fff74
parentefbc4fa944849fcb537170f0c8ac755b03554498 (diff)
downloadyelp-4ab88ac6ebc7e501971256c7e7000ec14f3f1b09.tar.gz
Approval sucker: Maciej <mjs@eazel.com>
Thu Feb 22 04:13:13 2001 George Lebl <jirka@5z.com> Approval sucker: Maciej <mjs@eazel.com> * components/help/converters/gnome-man2html2/gnome-man2html.c (scan_request): Fix bug #3334, by handling the ".' " troff request. * libnautilus-extensions/nautilus-directory-async.c (nautilus_directory_async_state_changed): the unref could be the last one, so don't access the directory afterwards.
-rw-r--r--src/man2html/yelp-man2html.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/man2html/yelp-man2html.c b/src/man2html/yelp-man2html.c
index 2db37daf..ed811b78 100644
--- a/src/man2html/yelp-man2html.c
+++ b/src/man2html/yelp-man2html.c
@@ -1924,6 +1924,22 @@ static char
} else {
i=V(c[0],c[1]);
switch (i) {
+ case V('`',' '):
+ out_html(change_to_font('B'));
+ out_html("`");
+ trans_char(c,'"','\a');
+ c=c+j;
+ if (*c!='\n')
+ c++;
+ c=scan_troff(c, 1, NULL);
+ out_html("'");
+ out_html(change_to_font('R'));
+ out_html(NEWLINE);
+ if (fillout)
+ curpos++;
+ else
+ curpos=0;
+ break;
case V('a','b'):
h=c+j;
while (*h && *h !='\n')