File: 04_key-delete-loop.dpatch

package info (click to toggle)
tkman 2.2-4
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 948 kB
  • ctags: 290
  • sloc: tcl: 8,264; sh: 470; makefile: 241
file content (18 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /bin/sh /usr/share/dpatch/dpatch-run
## 04_key-delete-loop.dpatch by  <maxy@gnuservers.com.ar>
##
## DP: Fixes erroneous binding

@DPATCH@
diff -urNad tkman-2.2~/gui.tcl tkman-2.2/gui.tcl
--- tkman-2.2~/gui.tcl	2003-04-01 20:31:38.000000000 -0300
+++ tkman-2.2/gui.tcl	2008-04-14 10:41:36.000000000 -0300
@@ -106,7 +106,7 @@
 
 	entry $w.mantypein -relief sunken -textvariable manx(typein$w) -width 20
 	# should make this a Preference
-	bind Entry <Key-Delete> [bind Entry <Key-Backspace>]
+	#bind Entry <Key-Delete> [bind Entry <Key-Backspace>]
 	# shells/general UNIX, Emacs
 	bind Entry <Control-Key-u> {%W delete 0 end}
 	bind Entry <Control-KeyPress-w> {%W delete 0 end}