aboutsummaryrefslogtreecommitdiff
path: root/editors/nvi/patches/nvi-07-flush_cache.patch
diff options
context:
space:
mode:
Diffstat (limited to 'editors/nvi/patches/nvi-07-flush_cache.patch')
-rw-r--r--editors/nvi/patches/nvi-07-flush_cache.patch49
1 files changed, 49 insertions, 0 deletions
diff --git a/editors/nvi/patches/nvi-07-flush_cache.patch b/editors/nvi/patches/nvi-07-flush_cache.patch
new file mode 100644
index 0000000..0f06dba
--- /dev/null
+++ b/editors/nvi/patches/nvi-07-flush_cache.patch
@@ -0,0 +1,49 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 07flush_cache.dpatch by <hesso@pool.math.tu-berlin.de>
+##
+## DP: No description.
+
+@DPATCH@
+diff -Naur nvi-1.81.6.orig/common/db1.c nvi-1.81.6/common/db1.c
+--- nvi-1.81.6.orig/common/db1.c 2007-11-18 17:41:42.000000000 +0100
++++ nvi-1.81.6/common/db1.c 2008-05-01 18:07:58.000000000 +0200
+@@ -262,8 +262,7 @@
+ }
+
+ /* Flush the cache, update line count, before screen update. */
+- if (lno <= ep->c_lno)
+- ep->c_lno = OOBLNO;
++ ep->c_lno = OOBLNO;
+ if (ep->c_nlines != OOBLNO)
+ --ep->c_nlines;
+
+@@ -314,8 +313,7 @@
+ }
+
+ /* Flush the cache, update line count, before screen update. */
+- if (lno < ep->c_lno)
+- ep->c_lno = OOBLNO;
++ ep->c_lno = OOBLNO;
+ if (ep->c_nlines != OOBLNO)
+ ++ep->c_nlines;
+
+@@ -386,8 +384,7 @@
+ }
+
+ /* Flush the cache, update line count, before screen update. */
+- if (lno >= ep->c_lno)
+- ep->c_lno = OOBLNO;
++ ep->c_lno = OOBLNO;
+ if (ep->c_nlines != OOBLNO)
+ ++ep->c_nlines;
+
+@@ -459,8 +456,7 @@
+ }
+
+ /* Flush the cache, before logging or screen update. */
+- if (lno == ep->c_lno)
+- ep->c_lno = OOBLNO;
++ ep->c_lno = OOBLNO;
+
+ /* File now dirty. */
+ if (F_ISSET(ep, F_FIRSTMODIFY))