aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/280_search-next.patch
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-24 14:36:40 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-24 14:37:05 +0000
commit8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch)
treecd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/280_search-next.patch
parentUpdate Vcs-Browser (diff)
downloadw3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz
w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to '')
-rw-r--r--debian/patches/280_search-next.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/280_search-next.patch b/debian/patches/280_search-next.patch
deleted file mode 100644
index c66254b..0000000
--- a/debian/patches/280_search-next.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Subject: Fix crash after SEARCH_NEXT
-From: AIDA Shinra <shinra@j10n.org>
-Origin: http://www.j10n.org/files/w3m-cvs-1.1055-search-next.patch
-
- Patch from [w3m-dev:04473] on 2013-12-07.
-
---- w3m.orig/main.c Mon Oct 14 02:20:37 2013
-+++ w3m/main.c Sat Dec 7 00:33:36 2013
-@@ -1928,6 +1928,10 @@
- result = srchcore(SearchString, routine[reverse]);
- if (result & SR_FOUND)
- clear_mark(Currentbuf->currentLine);
-+ else {
-+ if (reverse == 0)
-+ Currentbuf->pos -= 1;
-+ }
- displayBuffer(Currentbuf, B_NORMAL);
- disp_srchresult(result, (reverse ? "Backward: " : "Forward: "),
- SearchString);