[SCM] konsole packaging branch, master, updated. debian/16.12.0-1-15-gc4bb01c

Maximiliano Curia maxy at moszumanska.debian.org
Mon Mar 27 12:31:45 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/konsole.git;a=commitdiff;h=fa99f0c

The following commit has been merged in the master branch:
commit fa99f0cc4b26e5315d849f7a57af2d987ced5d74
Author: Maximiliano Curia <maxy at gnuservers.com.ar>
Date:   Mon Mar 27 14:01:39 2017 +0200

    Add upstream patch: Allow-ANSI-string-terminator-to-work.patch
---
 .../Allow-ANSI-string-terminator-to-work.patch     | 34 ++++++++++++++++++++++
 debian/patches/series                              |  1 +
 2 files changed, 35 insertions(+)

diff --git a/debian/patches/Allow-ANSI-string-terminator-to-work.patch b/debian/patches/Allow-ANSI-string-terminator-to-work.patch
new file mode 100644
index 0000000..2c75d56
--- /dev/null
+++ b/debian/patches/Allow-ANSI-string-terminator-to-work.patch
@@ -0,0 +1,34 @@
+From: Kurt Hindenburg <kurt.hindenburg at gmail.com>
+Date: Sat, 28 Jan 2017 10:22:52 -0500
+Subject: Allow ANSI string terminator to work
+
+Treat "\e]0;<title>\e\" (set window title) the same way
+it interprets "\e]0;<title>".
+
+It seems that Konsole does not recognize the standard string terminator
+sequence "\e\" (ESC \). Everything works fine if I use "" (BEL).
+
+<http://invisible-island.net/xterm/xterm.faq.html#how2_title>
+
+Thanks to Aniketh Girish anikethgireesh gmail com and Martin Sandsmark
+martin sandsmark kde org for patch/review
+
+BUG:231405
+REVIEW:129895
+---
+ src/Vt102Emulation.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/Vt102Emulation.cpp b/src/Vt102Emulation.cpp
+index a0c73cef..1bde8469 100644
+--- a/src/Vt102Emulation.cpp
++++ b/src/Vt102Emulation.cpp
+@@ -280,7 +280,7 @@ void Vt102Emulation::initTokenizer()
+ #define epe( )     (p >=  3  && s[2] == '!')
+ #define egt( )     (p >=  3  && s[2] == '>')
+ #define Xpe        (tokenBufferPos >= 2 && tokenBuffer[1] == ']')
+-#define Xte        (Xpe      && cc ==  7 )
++#define Xte        (Xpe      && (cc ==  7 || cc == 33))
+ #define ces(C)     (cc < 256 && (charClass[cc] & (C)) == (C) && !Xte)
+ 
+ #define CNTL(c) ((c)-'@')
diff --git a/debian/patches/series b/debian/patches/series
index e47c055..320cefa 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -8,3 +8,4 @@ Handle-surrogate-utf16-characters.patch
 Fix-word-boundaries-with-combining-characters.patch
 Don-t-include-newlines-in-selection-if-trimming-is-on.patch
 Limit-ourselves-to-3-combining-characters.patch
+Fix-opening-of-new-tabs-with-multiple-processes.patch

-- 
konsole packaging



More information about the pkg-kde-commits mailing list