diff options
Diffstat (limited to 'editors/gate/files')
-rw-r--r-- | editors/gate/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | editors/gate/files/patch-configure | 11 | ||||
-rw-r--r-- | editors/gate/files/patch-gate.h | 11 | ||||
-rw-r--r-- | editors/gate/files/patch-line.c | 11 | ||||
-rw-r--r-- | editors/gate/files/patch-main.c | 11 | ||||
-rw-r--r-- | editors/gate/files/patch-spel.c | 20 | ||||
-rw-r--r-- | editors/gate/files/patch-subs.c | 20 |
7 files changed, 0 insertions, 95 deletions
diff --git a/editors/gate/files/patch-Makefile.in b/editors/gate/files/patch-Makefile.in deleted file mode 100644 index ea70d12af278..000000000000 --- a/editors/gate/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2003-06-19 16:47:56 UTC -+++ Makefile.in -@@ -25,7 +25,7 @@ DIST= README $(SRCS) gate.h config.h.in - Makefile.in gate.1.C gate.help CHANGES - - gate: $(OBJS) -- $(CC) -o gate $(CFLAGS) $(OBJS) $(LIBS) -+ $(CC) -o gate $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) - - main.o: main.c gate.h config.h - util.o: util.c gate.h config.h diff --git a/editors/gate/files/patch-configure b/editors/gate/files/patch-configure deleted file mode 100644 index 579cf63aaf5b..000000000000 --- a/editors/gate/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2005-01-24 06:35:15 UTC -+++ configure -@@ -1766,7 +1766,7 @@ else - cat conftest.$ac_ext >&5 - fi - rm -f conftest* --test "$ac_cv_search_tgetent" = "no" && for i in termcap curses; do -+test "$ac_cv_search_tgetent" = "no" && for i in ncurses; do - LIBS="-l$i $ac_func_search_save_LIBS" - cat > conftest.$ac_ext <<EOF - #line 1773 "configure" diff --git a/editors/gate/files/patch-gate.h b/editors/gate/files/patch-gate.h deleted file mode 100644 index f4873775e0f9..000000000000 --- a/editors/gate/files/patch-gate.h +++ /dev/null @@ -1,11 +0,0 @@ ---- gate.h.orig 2005-01-24 06:24:26 UTC -+++ gate.h -@@ -211,7 +211,7 @@ int mv_file(char *src, char *dst); - - /* LINE.C */ - int outcol(char *str,int n,int icol); --int getline(char *bf, char *wbf, int *wcol, char *prompt); -+int get_line(char *bf, char *wbf, int *wcol, char *prompt); - void back_to_col(int ncol); - void print_to_index(int newi); - diff --git a/editors/gate/files/patch-line.c b/editors/gate/files/patch-line.c deleted file mode 100644 index c36f28220fe7..000000000000 --- a/editors/gate/files/patch-line.c +++ /dev/null @@ -1,11 +0,0 @@ ---- line.c.orig 2003-06-19 15:06:54 UTC -+++ line.c -@@ -82,7 +82,7 @@ void mcursor(int *col, int *lin, char ch - * If <wbuf> is NULL, then this does a more ordinary, wrapless read. - */ - --int getline(char *buf, char *wbuf, int *wcol, char *prompt) -+int get_line(char *buf, char *wbuf, int *wcol, char *prompt) - { - int linemode= (wbuf == NULL); /* reading single line, not file */ - int wrapon= !linemode; /* is line wrap enabled? */ diff --git a/editors/gate/files/patch-main.c b/editors/gate/files/patch-main.c deleted file mode 100644 index fa47f6591b78..000000000000 --- a/editors/gate/files/patch-main.c +++ /dev/null @@ -1,11 +0,0 @@ ---- main.c.orig 2005-01-24 17:05:01 UTC -+++ main.c -@@ -87,7 +87,7 @@ int main(int argc,char **argv) - wcol= 0; - for (;;) - { -- if (getline(bf[sw], bf[!sw], &wcol, prompt)) -+ if (get_line(bf[sw], bf[!sw], &wcol, prompt)) - { - putchar('\n'); - done(RET_ENTER); diff --git a/editors/gate/files/patch-spel.c b/editors/gate/files/patch-spel.c deleted file mode 100644 index 53ae7f923153..000000000000 --- a/editors/gate/files/patch-spel.c +++ /dev/null @@ -1,20 +0,0 @@ ---- spel.c.orig 2003-06-19 16:55:51 UTC -+++ spel.c -@@ -151,7 +151,7 @@ empty_repl() - /* ADD_REPL - Add the given replacement to the list of replacements. - * "replace" may be NULL to indicate that the word is to be ignored. - */ -- -+void - add_repl(char *word, int word_len, char *replace) - { - struct repl *r; -@@ -683,7 +683,7 @@ int fix_word(char *line, int offset, int - for(;;) - { - subtask= 1; -- if (getline(bf,NULL,&wcol,st)) -+ if (get_line(bf,NULL,&wcol,st)) - { - printf("\nSpell Check Interupted.\n"); - return 1; diff --git a/editors/gate/files/patch-subs.c b/editors/gate/files/patch-subs.c deleted file mode 100644 index 295bb224a02f..000000000000 --- a/editors/gate/files/patch-subs.c +++ /dev/null @@ -1,20 +0,0 @@ ---- subs.c.orig 2005-01-24 06:16:01 UTC -+++ subs.c -@@ -74,7 +74,7 @@ int ask_spell_subs(char **replace, int * - subtask= 1; - sprintf(st,"Replacement for \"%.*s\" (? for help): ", - strlen(match+1)-1, match+1); -- if (getline(*replace= bf,NULL,wcol,st)) -+ if (get_line(*replace= bf,NULL,wcol,st)) - { - printf("\nSpell Check Interupted.\n"); - do_subs= 'q'; -@@ -429,7 +429,7 @@ int cliplast(char *lastbuf, int bufsize) - #endif - - /* Make a copy of the file */ -- if ((cfp= make_copy()) == NULL) return; -+ if ((cfp= make_copy()) == NULL) return 0; - fflush(cfp); - fseek(cfp,0L,0); - |