You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
Add support for \(lq and \(rq escape sequences (closes: #338339).
|
|
|
|
diff -Nru3 man-1.6c/man2html/strdefs.c man-1.6c/man2html/strdefs.c
|
|
--- man-1.6c/man2html/strdefs.c 2005-06-21 03:29:59.000000000 +0200
|
|
+++ man-1.6/cman2html/strdefs.c 2005-11-09 12:34:28.000000000 +0100
|
|
@@ -95,6 +95,7 @@
|
|
{ V('b','v'), 1, "|", NULL },
|
|
{ V('c','i'), 1, "o", NULL }, /* circle */
|
|
{ V('c','o'), 1, "©", NULL },
|
|
+ { V('c','q'), 1, "'", NULL },
|
|
{ V('c','t'), 1, "¢", NULL },
|
|
{ V('d','e'), 1, "°", NULL },
|
|
{ V('d','g'), 1, "+", NULL }, /* dagger */
|
|
@@ -114,9 +115,11 @@
|
|
{ V('i','s'), 8, "Integral", NULL }, /* integral sign */
|
|
{ V('l','f'), 2, "|_", NULL },
|
|
{ V('l','k'), 1, "<FONT SIZE=\"+2\">{</FONT>", NULL },
|
|
+ { V('l','q'), 1, "\"", NULL },
|
|
{ V('m','i'), 1, "-", NULL },
|
|
{ V('m','u'), 1, "×", NULL },
|
|
{ V('n','o'), 1, "¬", NULL },
|
|
+ { V('o','q'), 1, "'", NULL },
|
|
{ V('o','r'), 1, "|", NULL },
|
|
{ V('p','d'), 1, "d", NULL }, /* partial derivative */
|
|
{ V('p','l'), 1, "+", NULL },
|
|
@@ -125,6 +128,7 @@
|
|
{ V('r','g'), 1, "®", NULL },
|
|
{ V('r','k'), 1, "<FONT SIZE=\"+2\">}</FONT>", NULL },
|
|
{ V('r','n'), 1, "¯", NULL },
|
|
+ { V('r','q'), 1, "\"", NULL },
|
|
{ V('r','u'), 1, "_", NULL },
|
|
{ V('s','c'), 1, "§", NULL },
|
|
{ V('s','l'), 1, "/", NULL },
|