From 7525cfa63719a65d5c5f924219b13a0111f1343f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Mon, 30 Nov 2015 19:14:21 +0100 Subject: testing/nvi: new aport Including a subset of the debian patchset. --- testing/nvi/07flush_cache.patch | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 testing/nvi/07flush_cache.patch (limited to 'testing/nvi/07flush_cache.patch') diff --git a/testing/nvi/07flush_cache.patch b/testing/nvi/07flush_cache.patch new file mode 100644 index 0000000000..7479177b83 --- /dev/null +++ b/testing/nvi/07flush_cache.patch @@ -0,0 +1,46 @@ +From: +Subject: No description. + +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)) -- cgit v1.2.3