diff mbox

linenoise: patch was merged on upstream

Message ID 1361348940-21004-1-git-send-email-francois.perrad@gadz.org
State Accepted
Commit 4992307bd1d76ef7fd88978896675d57fa62e663
Headers show

Commit Message

Francois Perrad Feb. 20, 2013, 8:29 a.m. UTC
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 package/linenoise/linenoise-get-columns.patch |   20 --------------------
 package/linenoise/linenoise.mk                |    2 +-
 2 files changed, 1 insertion(+), 21 deletions(-)
 delete mode 100644 package/linenoise/linenoise-get-columns.patch

Comments

Peter Korsgaard Feb. 22, 2013, 10:27 p.m. UTC | #1
>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:

 Francois> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>

Committed to next, thanks.
diff mbox

Patch

diff --git a/package/linenoise/linenoise-get-columns.patch b/package/linenoise/linenoise-get-columns.patch
deleted file mode 100644
index 4fb9e40..0000000
--- a/package/linenoise/linenoise-get-columns.patch
+++ /dev/null
@@ -1,20 +0,0 @@ 
-returns the default value (80) when a real value is not available
-(0 is not an acceptable value for COLUMNS, the width of the screen).
-
-see pull request on upstream : http://github.com/antirez/linenoise/pull/31
-
-Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
-
-Index: b/linenoise.c
-===================================================================
---- a/linenoise.c
-+++ b/linenoise.c
-@@ -182,7 +182,7 @@
- static int getColumns(void) {
-     struct winsize ws;
- 
--    if (ioctl(1, TIOCGWINSZ, &ws) == -1) return 80;
-+    if (ioctl(1, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) return 80;
-     return ws.ws_col;
- }
- 
diff --git a/package/linenoise/linenoise.mk b/package/linenoise/linenoise.mk
index 343a107..fb73960 100644
--- a/package/linenoise/linenoise.mk
+++ b/package/linenoise/linenoise.mk
@@ -3,7 +3,7 @@ 
 # linenoise
 #
 #############################################################
-LINENOISE_VERSION = g8c9b481
+LINENOISE_VERSION = g27a3b4d
 LINENOISE_SITE = http://github.com/antirez/linenoise/tarball/master
 LINENOISE_LICENSE = BSD-2c
 LINENOISE_INSTALL_STAGING = YES