summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/nano/files/nano-1.3.11-columnfix.patch')
-rw-r--r--app-editors/nano/files/nano-1.3.11-columnfix.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/app-editors/nano/files/nano-1.3.11-columnfix.patch b/app-editors/nano/files/nano-1.3.11-columnfix.patch
deleted file mode 100644
index ef49780e77d7..000000000000
--- a/app-editors/nano/files/nano-1.3.11-columnfix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -ur nano-1.3.11/src/winio.c nano-1.3.11-fixed/src/winio.c
---- nano-1.3.11/src/winio.c 2006-03-29 20:18:29.000000000 -0500
-+++ nano-1.3.11-fixed/src/winio.c 2006-05-19 14:08:24.000000000 -0400
-@@ -1857,7 +1857,12 @@
- }
- }
- #ifdef ENABLE_UTF8
-- else if (ISSET(USE_UTF8) && mbwidth(buf_mb) > 1) {
-+ else if (ISSET(USE_UTF8) && mbwidth(buf_mb) == 2) {
-+ if (column >= start_col) {
-+ converted[index++] = ' ';
-+ start_col++;
-+ }
-+
- converted[index++] = ' ';
- start_col++;
-