summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2010-08-13 22:45:30 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2010-08-13 22:45:30 +0000
commit64f055dd72624d7f8a2d965ccaa427c6a3ac4b87 (patch)
tree6f09b02b495d5b95c4ace991c924ff803f9df40a /x11-libs/vte/files
parentDrop old snapshot. Fix klash patch, bug #332673. (diff)
downloadgentoo-2-64f055dd72624d7f8a2d965ccaa427c6a3ac4b87.tar.gz
gentoo-2-64f055dd72624d7f8a2d965ccaa427c6a3ac4b87.tar.bz2
gentoo-2-64f055dd72624d7f8a2d965ccaa427c6a3ac4b87.zip
Clean up old revisions.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/vte/files')
-rw-r--r--x11-libs/vte/files/vte-0.17.4-fix-highlighting-on-activity.patch48
-rw-r--r--x11-libs/vte/files/vte-0.17.4-no-null-backspace.patch45
2 files changed, 0 insertions, 93 deletions
diff --git a/x11-libs/vte/files/vte-0.17.4-fix-highlighting-on-activity.patch b/x11-libs/vte/files/vte-0.17.4-fix-highlighting-on-activity.patch
deleted file mode 100644
index 96c09b474f67..000000000000
--- a/x11-libs/vte/files/vte-0.17.4-fix-highlighting-on-activity.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Upstream revisions 2134 and 2135 with useless whitespace change hunks removed:
-
-2008-10-23 Chris Wilson
-
-Bug 557375 – >=vte-0.16.14 breaks highlighting on activity
-
-* src/vte.c (vte_terminal_deselect_all),
-(vte_terminal_extend_selection):
-After the user modifies the selection, copy it to PRIMARY and store
-it on the terminal. This ensures that after a screen redraw, we
-compare the contents of the selected region with the current
-selection, instead of stale data.
-
-2008-10-31 Chris Wilson
-
-* src/vte.c (vte_terminal_deselect_all):
-Preserve the copy of the selection until it is replace by a new
-selection, so that we can perform asynchronous copies from the
-clipboard.
-
---- trunk/src/vte.c 2008/10/23 08:39:44 2130
-+++ trunk/src/vte.c 2008/10/31 12:59:29 2135
-@@ -1018,10 +1018,16 @@
- {
- if (terminal->pvt->has_selection) {
- gint sx, sy, ex, ey;
-- terminal->pvt->has_selection = FALSE;
-+
- _vte_debug_print(VTE_DEBUG_SELECTION,
- "Deselecting all text.\n");
-+
-+ terminal->pvt->has_selection = FALSE;
-+ /* Don't free the current selection, as we need to keep
-+ * hold of it for async copying from the clipboard. */
-+
- vte_terminal_emit_selection_changed(terminal);
-+
- sx = terminal->pvt->selection_start.x;
- sy = terminal->pvt->selection_start.y;
- ex = terminal->pvt->selection_end.x;
-@@ -6510,6 +6514,7 @@
- terminal->pvt->selection_start.y,
- terminal->pvt->selection_end.x,
- terminal->pvt->selection_end.y);
-+ vte_terminal_copy_primary(terminal);
- vte_terminal_emit_selection_changed(terminal);
- }
-
diff --git a/x11-libs/vte/files/vte-0.17.4-no-null-backspace.patch b/x11-libs/vte/files/vte-0.17.4-no-null-backspace.patch
deleted file mode 100644
index 734e7b530ce4..000000000000
--- a/x11-libs/vte/files/vte-0.17.4-no-null-backspace.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN vte-0.17.4.orig/src/vte.c vte-0.17.4/src/vte.c
---- vte-0.17.4.orig/src/vte.c 2008-09-08 15:48:31.000000000 -0400
-+++ vte-0.17.4/src/vte.c 2008-12-08 22:22:38.000000000 -0500
-@@ -4636,6 +4636,7 @@ vte_terminal_key_press(GtkWidget *widget
-
- /* Now figure out what to send to the child. */
- if ((event->type == GDK_KEY_PRESS) && !modifier) {
-+ cc_t erase = VTE_VDISABLE;
- handled = FALSE;
- /* Map the key to a sequence name if we can. */
- switch (keyval) {
-@@ -4661,11 +4662,15 @@ vte_terminal_key_press(GtkWidget *widget
- if (terminal->pvt->pty_master != -1) {
- if (tcgetattr(terminal->pvt->pty_master,
- &tio) != -1) {
-- normal = g_strdup_printf("%c",
-- tio.c_cc[VERASE]);
- normal_length = 1;
-+ erase = tio.c_cc[VERASE];
- }
- }
-+ if (erase == VTE_VDISABLE)
-+ normal = g_strdup(""); /* Fallback value. */
-+ else
-+ normal = g_strdup_printf("%c", erase);
-+ normal_length = 1;
- suppress_meta_esc = FALSE;
- break;
- }
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN vte-0.17.4.orig/src/vte-private.h vte-0.17.4/src/vte-private.h
---- vte-0.17.4.orig/src/vte-private.h 2008-09-08 15:48:31.000000000 -0400
-+++ vte-0.17.4/src/vte-private.h 2008-12-08 22:22:38.000000000 -0500
-@@ -91,6 +91,12 @@ G_BEGIN_DECLS
- #define VTE_MAX_PROCESS_TIME 100
- #define VTE_CELL_BBOX_SLACK 1
-
-+#ifdef _POSIX_VDISABLE /* From unistd.h */
-+#define VTE_VDISABLE _POSIX_VDISABLE
-+#else
-+#define VTE_VDISABLE '\0'
-+#endif
-+
- /* The structure we use to hold characters we're supposed to display -- this
- * includes any supported visible attributes. */
- struct vte_charcell {