r11273 - in /desktop/unstable/vte/debian: changelog patches/20_fix_strange_lines.patch

alanbach-guest at users.alioth.debian.org alanbach-guest at users.alioth.debian.org
Sun Jun 3 14:02:42 UTC 2007


Author: alanbach-guest
Date: Sun Jun  3 14:02:42 2007
New Revision: 11273

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=11273
Log:
* Merged changelog entries * Added 20_fix_strange_lines.patch

Added:
    desktop/unstable/vte/debian/patches/20_fix_strange_lines.patch
Modified:
    desktop/unstable/vte/debian/changelog

Modified: desktop/unstable/vte/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/vte/debian/changelog?rev=11273&op=diff
==============================================================================
--- desktop/unstable/vte/debian/changelog (original)
+++ desktop/unstable/vte/debian/changelog Sun Jun  3 14:02:42 2007
@@ -1,11 +1,17 @@
-vte (1:0.16.3-2) UNRELEASED; urgency=low
-
+vte (1:0.16.4-1) UNRELEASED; urgency=low
+
+  [ Alan Baghumian]
+  * New upstream release
+  * Added 20_fix_strange_lines.patch, fixed strange lines above the screen;
+    from SVN r1904
+
+  [ Loic Minier ]
   * New patch, 90_ctrl-key-fix, fixes Ctrl-key combination yeilding just key;
     from SVN r1893; GNOME #375112; closes: #425879, #421734.
   * New patch, 91_scrollback-corruption, fixes corruption of scrollback; from
     upstream SVN r1889; GNOME #440487; closes: #421092.
 
- -- Loic Minier <lool at dooz.org>  Tue, 22 May 2007 18:28:35 +0200
+ -- Alan Baghumian <alan at technotux.org>  Sun, 03 Jun 2007 17:25:27 +0330
 
 vte (1:0.16.3-1) unstable; urgency=low
 

Added: desktop/unstable/vte/debian/patches/20_fix_strange_lines.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/vte/debian/patches/20_fix_strange_lines.patch?rev=11273&op=file
==============================================================================
--- desktop/unstable/vte/debian/patches/20_fix_strange_lines.patch (added)
+++ desktop/unstable/vte/debian/patches/20_fix_strange_lines.patch Sun Jun  3 14:02:42 2007
@@ -1,0 +1,29 @@
+--- trunk/src/vte.c	2007/05/28 06:31:47	1901
++++ trunk/src/vte.c	2007/05/30 15:33:21	1904
+@@ -9464,14 +9464,14 @@
+ 	do {
+ 		row_data = _vte_terminal_find_row_data(terminal, row);
+ 		if (row_data == NULL) {
+-			goto fg_next_row;
++			goto fg_skip_row;
+ 		}
+ 		/* Back up in case this is a multicolumn character,
+ 		 * making the drawing area a little wider. */
+ 		i = start_column;
+ 		cell = _vte_row_data_find_charcell(row_data, i);
+ 		if (cell == NULL) {
+-			goto fg_next_row;
++			goto fg_skip_row;
+ 		}
+ 		while (cell->attr.fragment && i > 0) {
+ 			cell = _vte_row_data_find_charcell(row_data, --i);
+@@ -9482,7 +9482,7 @@
+ 			/* Get the character cell's contents. */
+ 			cell = _vte_row_data_find_charcell(row_data, i);
+ 			if (cell == NULL) {
+-				goto fg_next_row;
++				goto fg_skip_row;
+ 			}
+ 			while (cell->c == 0 ||
+ 					cell->c == ' ' ||
+




More information about the pkg-gnome-commits mailing list