update vte to 0.16.6
from lteo.openbsd1 at calyptix.com ok martynas@
This commit is contained in:
parent
8c9567c920
commit
faf9d57770
@ -1,11 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.23 2007/06/04 18:20:16 martynas Exp $
|
||||
# $OpenBSD: Makefile,v 1.24 2007/06/26 17:21:46 jasper Exp $
|
||||
|
||||
COMMENT= "terminal emulation library"
|
||||
|
||||
DISTNAME= vte-0.16.4
|
||||
PKGNAME= ${DISTNAME}p0
|
||||
DISTNAME= vte-0.16.6
|
||||
PKGNAME= ${DISTNAME}
|
||||
CATEGORIES= devel
|
||||
SHARED_LIBS += vte 11.8 # .11.8
|
||||
SHARED_LIBS += vte 11.9 # .11.10
|
||||
|
||||
HOMEPAGE= http://www.gnome.org/
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (vte-0.16.4.tar.bz2) = SVFJ08gRaIlSk/xNsZpe6w==
|
||||
RMD160 (vte-0.16.4.tar.bz2) = Lz7O4fbi2PXU1Zp5hO47mUZMYPM=
|
||||
SHA1 (vte-0.16.4.tar.bz2) = krouQC9GZrzaad2Y+/miGtswjmg=
|
||||
SHA256 (vte-0.16.4.tar.bz2) = 3TmFOb8qc/1TMT8RsdMXIgDSmT18Wf3vgUegxVWIrYU=
|
||||
SIZE (vte-0.16.4.tar.bz2) = 1103252
|
||||
MD5 (vte-0.16.6.tar.bz2) = ExF0mGq1Gbkd/NbPIlQcuw==
|
||||
RMD160 (vte-0.16.6.tar.bz2) = E7EzxgBbMbESL4iR+J6ufovf91A=
|
||||
SHA1 (vte-0.16.6.tar.bz2) = lKj7zGsK4GbO/IHEphxe2wL0Glg=
|
||||
SHA256 (vte-0.16.6.tar.bz2) = SDLlOrbM2xx67ieLfc4Ms2ApcsICpcDhcmqmYOCOShA=
|
||||
SIZE (vte-0.16.6.tar.bz2) = 1103546
|
||||
|
@ -1,29 +0,0 @@
|
||||
$OpenBSD: patch-src_vte_c,v 1.3 2007/06/04 18:20:16 martynas Exp $
|
||||
--- src/vte.c.orig Tue May 29 00:43:38 2007
|
||||
+++ src/vte.c Sun Jun 3 11:26:20 2007
|
||||
@@ -9464,14 +9464,14 @@ vte_terminal_draw_rows(VteTerminal *terminal,
|
||||
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 @@ vte_terminal_draw_rows(VteTerminal *terminal,
|
||||
/* 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 == ' ' ||
|
Loading…
Reference in New Issue
Block a user