aboutsummaryrefslogtreecommitdiffstats
path: root/debian/patches/160_ignore-shy.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/160_ignore-shy.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 'debian/patches/160_ignore-shy.patch')
-rw-r--r--debian/patches/160_ignore-shy.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/160_ignore-shy.patch b/debian/patches/160_ignore-shy.patch
deleted file mode 100644
index 2955881..0000000
--- a/debian/patches/160_ignore-shy.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Subject: Ignore &shy; to prevent drawing hyphens everywhere
-Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=441934
-From: Hilko Bengen <bengen@debian.org>
-
-diff --git a/entity.c b/entity.c
-index fdd8f64..a7c9e99 100644
---- a/entity.c
-+++ b/entity.c
-@@ -44,6 +44,8 @@ conv_entity(unsigned int c)
- return " ";
- if (c == 0xa0)
- return NBSP;
-+ if (c == 0xad) /* SOFT HYPHEN */
-+ return "";
- if (c < 0x100) { /* Latin1 (ISO 8859-1) */
- if (UseAltEntity)
- return alt_latin1[c - 0xa0];