summaryrefslogtreecommitdiff
path: root/korean/linuxdoc-sgml/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'korean/linuxdoc-sgml/files/patch-ab')
-rw-r--r--korean/linuxdoc-sgml/files/patch-ab120
1 files changed, 0 insertions, 120 deletions
diff --git a/korean/linuxdoc-sgml/files/patch-ab b/korean/linuxdoc-sgml/files/patch-ab
deleted file mode 100644
index a92266e649d2..000000000000
--- a/korean/linuxdoc-sgml/files/patch-ab
+++ /dev/null
@@ -1,120 +0,0 @@
-*** html-fix/html2html.l.orig Mon Feb 26 13:13:21 1996
---- html-fix/html2html.l Fri May 24 02:18:11 2002
-***************
-*** 59,71 ****
-
- %{
-
-! #include <malloc.h>
- #include <stdio.h>
- #include <string.h>
-
- /* #define DEBUG */
-
-! FILE *out = stdout;
-
- char *html_extension = "html"; /* Use Unix style ".html" by default */
-
---- 59,71 ----
-
- %{
-
-! #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
-
- /* #define DEBUG */
-
-! FILE *out;
-
- char *html_extension = "html"; /* Use Unix style ".html" by default */
-
-***************
-*** 767,776 ****
-
- %%
-
-! void
- main( int argc, unsigned char **argv )
- {
- int i;
-
- strcpy( firstname, "$$" );
- language[0]='\0';
---- 767,778 ----
-
- %%
-
-! int
- main( int argc, unsigned char **argv )
- {
- int i;
-+
-+ out = stdout;
-
- strcpy( firstname, "$$" );
- language[0]='\0';
-*** rtf-fix/rtf2rtf.l.orig Tue Jan 16 21:46:56 1996
---- rtf-fix/rtf2rtf.l Fri May 24 02:19:01 2002
-***************
-*** 20,26 ****
-
- %{
-
-! #include <malloc.h>
- #include <stdio.h>
- #include <string.h>
-
---- 20,26 ----
-
- %{
-
-! #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
-
-***************
-*** 51,58 ****
- int section_id = 0; /* used for TOC hyperlinks */
- int in_appendix = 0;
-
-! FILE *out = stdout;
-! FILE *idx_fp = stdout;
-
- char buf[2048], sectname[256], labeltxt[256];
- char firstname[256], outname[256];
---- 51,58 ----
- int section_id = 0; /* used for TOC hyperlinks */
- int in_appendix = 0;
-
-! FILE *out;
-! FILE *idx_fp;
-
- char buf[2048], sectname[256], labeltxt[256];
- char firstname[256], outname[256];
-***************
-*** 379,388 ****
-
- %%
-
-! void
- main( int argc, char **argv )
- {
- int i;
-
- strcpy( firstname, "RTF" );
-
---- 379,391 ----
-
- %%
-
-! int
- main( int argc, char **argv )
- {
- int i;
-+
-+ out = stdout;
-+ idx_fp = stdout;
-
- strcpy( firstname, "RTF" );
-