r11592 - in /desktop/unstable/vte/debian: changelog patches/60_fix-ctrl-dash.patch

lool at users.alioth.debian.org lool at users.alioth.debian.org
Tue Jun 19 09:08:08 UTC 2007


Author: lool
Date: Tue Jun 19 09:08:08 2007
New Revision: 11592

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=11592
Log:
* New patch, 60_fix-ctrl-dash, fixes mapping for Ctrl + dash; thanks
  Andrey Melnikov; GNOME #448259; closes: #429260.

Added:
    desktop/unstable/vte/debian/patches/60_fix-ctrl-dash.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=11592&op=diff
==============================================================================
--- desktop/unstable/vte/debian/changelog (original)
+++ desktop/unstable/vte/debian/changelog Tue Jun 19 09:08:08 2007
@@ -1,12 +1,14 @@
-vte (1:0.16.6-1) UNRELEASED; urgency=low
+vte (1:0.16.6-1) unstable; urgency=low
 
   * Pass proper configure flags to the udeb.
   * Generate proper shlibs for the udeb.
   * Build against the diretcfb Gtk flavor.
   * Disable udeb for now since it's unlikely to get useful soon.
   * New upstream stable release; no API change.
-
- -- Loic Minier <lool at dooz.org>  Tue, 19 Jun 2007 10:32:47 +0200
+  * New patch, 60_fix-ctrl-dash, fixes mapping for Ctrl + dash; thanks
+    Andrey Melnikov; GNOME #448259; closes: #429260.
+
+ -- Loic Minier <lool at dooz.org>  Tue, 19 Jun 2007 11:05:16 +0200
 
 vte (1:0.16.5-2) experimental; urgency=low
 

Added: desktop/unstable/vte/debian/patches/60_fix-ctrl-dash.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/vte/debian/patches/60_fix-ctrl-dash.patch?rev=11592&op=file
==============================================================================
--- desktop/unstable/vte/debian/patches/60_fix-ctrl-dash.patch (added)
+++ desktop/unstable/vte/debian/patches/60_fix-ctrl-dash.patch Tue Jun 19 09:08:08 2007
@@ -1,0 +1,23 @@
+GNOME #448259; Debian #429260; fixes mapping for Ctrl + dash.
+
+--- vte-0.16.5/src/keymap.c.orig	2007-02-27 00:05:13.000000000 +0300
++++ vte-0.16.5/src/keymap.c	2007-06-16 20:24:16.000000000 +0400
+@@ -269,6 +269,10 @@
+ 	{cursor_all, keypad_all, fkey_all, GDK_CONTROL_MASK, "\177", 1, X_NULL},
+ 	{cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL},
+ };
++static const struct _vte_keymap_entry _vte_keymap_GDK_Minus[] = {
++	{cursor_all, keypad_all, fkey_all, GDK_CONTROL_MASK, "\037", 1, X_NULL},
++	{cursor_all, keypad_all, fkey_all, 0, X_NULL, 0, X_NULL},
++};
+ 
+ /* Home and End are strange cases because their sequences vary wildly from
+  * system to system, or mine's just broken.  But anyway. */
+@@ -902,6 +906,7 @@
+ 	{GDK_6,			_vte_keymap_GDK_6},
+ 	{GDK_7,			_vte_keymap_GDK_7},
+ 	{GDK_8,			_vte_keymap_GDK_8},
++	{GDK_minus,		_vte_keymap_GDK_Minus},
+ 
+ 	{GDK_Up,		_vte_keymap_GDK_Up},
+ 	{GDK_Down,		_vte_keymap_GDK_Down},




More information about the pkg-gnome-commits mailing list