summaryrefslogtreecommitdiff
path: root/misc/fep/patches/patch-am
diff options
context:
space:
mode:
Diffstat (limited to 'misc/fep/patches/patch-am')
-rw-r--r--misc/fep/patches/patch-am83
1 files changed, 83 insertions, 0 deletions
diff --git a/misc/fep/patches/patch-am b/misc/fep/patches/patch-am
new file mode 100644
index 00000000000..b37b2397ec4
--- /dev/null
+++ b/misc/fep/patches/patch-am
@@ -0,0 +1,83 @@
+$NetBSD: patch-am,v 1.1 2003/11/07 16:36:12 christos Exp $
+
+--- fep_vi.c.orig 1991-05-29 01:31:27.000000000 -0400
++++ fep_vi.c 2003-11-07 11:19:21.000000000 -0500
+@@ -3,10 +3,20 @@
+ #ifndef lint
+ static char rcsid[]=
+ "$Header: /cvsroot/pkgsrc/misc/fep/patches/patch-am,v 1.1 2003/11/07 16:36:12 christos Exp $ (SRA)";
+-#endif lint
++#endif /* lint */
+
+ #include <stdio.h>
++#include <sys/ioctl.h>
++#ifdef TERMIOS
++#include <termios.h>
++#ifdef __linux__
++#ifndef _POSIX_VDISABLE
++#define _POSIX_VDISABLE '\0'
++#endif
++#endif
++#else
+ #include <sgtty.h>
++#endif
+ #include <ctype.h>
+ #include "fep_defs.h"
+ #include "fep_glob.h"
+@@ -107,7 +117,7 @@
+ /* ^X-^V */ {"\\^X\\^V", view_buffer},
+ /* ^X-^X */ {"\\^X\\^X", expand_file_name},
+ /* ^X-? */ {"\\^X?", show_bindings},
+- /* ^X-^C */ {"\\^X\\^C", terminate},
++ /* ^X-^C */ {"\\^X\\^C", (FUNC)terminate},
+ /* ^X-^D */ {"\\^X\\^D", send_eof},
+ /* ^X-( */ {"\\^X(", fep_start_script},
+ /* ^X-) */ {"\\^X)", fep_end_script},
+@@ -138,7 +148,7 @@
+ /* ^X-^L */ {"\\^X\\^L", fep_repaint},
+ /* ^X-^X */ {"\\^X\\^X", expand_file_name},
+ /* ^X-? */ {"\\^X?", show_bindings},
+- /* ^X-^C */ {"\\^X\\^C", terminate},
++ /* ^X-^C */ {"\\^X\\^C", (FUNC)terminate},
+ /* ^X-^D */ {"\\^X\\^D", send_eof},
+ /* ^X-^V */ {"\\^X\\^V", view_buffer},
+ /* ^X-( */ {"\\^X(", fep_start_script},
+@@ -161,7 +171,29 @@
+ cft[i] = self_insert;
+
+ #define import(table,key,fn) if((int)key>0)table[(int)key]=fn
+-
++#ifdef TERMIOS
++ /* Now, using cbreak mode
++ import (cft, initial_ttymode.c_cc[VSTART], ignore);
++ import (cft, initial_ttymode.c_cc[VSTOP], ignore);
++ */
++ import (cft, initial_ttymode.c_cc[VINTR], insert_and_flush);
++ import (aft, initial_ttymode.c_cc[VINTR], insert_and_flush);
++ import (cft, initial_ttymode.c_cc[VQUIT], insert_and_flush);
++ import (cft, initial_ttymode.c_cc[VEOF], send_eof);
++#ifdef VSWTC
++ import (cft, initial_ttymode.c_cc[VSWTC], insert_and_flush);
++#endif
++ import (cft, initial_ttymode.c_cc[VSUSP], insert_and_flush);
++#ifdef VDSUSP
++ import (cft, initial_ttymode.c_cc[VDSUSP], self_insert);
++#endif
++ import (cft, initial_ttymode.c_cc[VREPRINT], reprint);
++ import (cft, initial_ttymode.c_cc[VDISCARD], self_insert);
++ import (cft, initial_ttymode.c_cc[VWERASE], delete_previous_word);
++ import (cft, initial_ttymode.c_cc[VLNEXT], literal_next);
++ import (cft, initial_ttymode.c_cc[VERASE], delete_previous_character);
++ import (cft, initial_ttymode.c_cc[VKILL], delete_line);
++#else
+ /* Now, using cbreak mode
+ import (cft, tchars_buf.t_startx, ignore);
+ import (cft, tchars_buf.t_stopc, ignore);
+@@ -179,6 +211,7 @@
+ import (cft, ltchars_buf.t_lnextc, literal_next);
+ import (cft, initial_ttymode.sg_erase, delete_previous_character);
+ import (cft, initial_ttymode.sg_kill, delete_line);
++#endif
+
+ #undef import
+