diff options
author | roger <roger@FreeBSD.org> | 2000-10-18 08:09:09 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2000-10-18 08:09:09 +0000 |
commit | b3585814810af8728cf567414642291b2d5a055e (patch) | |
tree | 418bd7e95e68f1030757a79921c261a94e3819cb /misc | |
parent | 707c2e8793efcbe4d37433cc4c783863647adb7a (diff) | |
download | FreeBSD-ports-b3585814810af8728cf567414642291b2d5a055e.zip FreeBSD-ports-b3585814810af8728cf567414642291b2d5a055e.tar.gz |
Apply my patch to fix a html formatting bug
Diffstat (limited to 'misc')
-rw-r--r-- | misc/alevt/files/patch-ab | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/misc/alevt/files/patch-ab b/misc/alevt/files/patch-ab index 927a2aa..c23be7e 100644 --- a/misc/alevt/files/patch-ab +++ b/misc/alevt/files/patch-ab @@ -1,5 +1,5 @@ ---- exp-html.c.old Tue Oct 17 21:28:40 2000 -+++ exp-html.c Tue Oct 17 21:28:30 2000 +--- exp-html.c.orig Tue May 30 02:09:15 2000 ++++ exp-html.c Wed Oct 18 08:50:59 2000 @@ -214,7 +214,7 @@ { if (last_space) @@ -18,4 +18,17 @@ last_space=0; nbsp=1; } - +@@ -268,7 +268,12 @@ + { + //if previous nbsp --> put semicolon!!! + if (nbsp) fputc(';',fp); +- fputc(pg->data[y][z].ch,fp); ++ ++ // Handle ascii characters which have HTML meanings ++ if (pg->data[y][z].ch == '<') fprintf(fp,"<"); ++ else if (pg->data[y][z].ch == '>') fprintf(fp,">"); ++ else if (pg->data[y][z].ch == '&') fprintf(fp,"&"); ++ else fputc(pg->data[y][z].ch,fp); + last_space=0; + nbsp=0; + } |