aboutsummaryrefslogtreecommitdiff
path: root/editors/em/files/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'editors/em/files/patch-ad')
-rw-r--r--editors/em/files/patch-ad12
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/em/files/patch-ad b/editors/em/files/patch-ad
new file mode 100644
index 000000000000..44d819b1ef96
--- /dev/null
+++ b/editors/em/files/patch-ad
@@ -0,0 +1,12 @@
+--- eval.c.orig Thu May 2 21:21:06 1996
++++ eval.c Mon Dec 31 19:08:46 2001
+@@ -530,6 +530,9 @@
+ case EVTAB: tabmask = atoi(value)-1;
+ if (tabmask != 0x07 && tabmask != 0x03)
+ tabmask = 0x07;
++ /* changed by Tadashi Yumoto */
++ if ( (tabmask+1) == 8 || (tabmask+1) == 4 )
++ tabsize = tabmask + 1;
+ curwp->w_flag |= WFHARD;
+ break;
+ case EVOVERLAP: overlap = atoi(value);