diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2002-02-18 04:12:34 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2002-02-18 04:12:34 +0000 |
commit | 39821d12ccb0ce6d17148ea1d969da7b0c961cab (patch) | |
tree | c8f51d551f3619e92b5647b6086a1951552b9be6 /src | |
parent | 62feef6c956127865e6249edbe1916aaaf93e81b (diff) |
Fix kanji-coversion key binding. This has been broken since 7.1
Per Yoshinori Ariie's report.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgaccess/lib/tables.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgaccess/lib/tables.tcl b/src/bin/pgaccess/lib/tables.tcl index a4e2f034f7e..0707d5ca89c 100644 --- a/src/bin/pgaccess/lib/tables.tcl +++ b/src/bin/pgaccess/lib/tables.tcl @@ -815,7 +815,7 @@ if {$PgAcVar(mw,$wn,updatable)} then { $wn.c bind q <Key> "Tables::editText $wn %A %K" if {[info commands kanjiInput] == "kanjiInput"} then { $wn.c bind q <Control-backslash> "pgaccess_kinput_start %W"; - $wn.c bind q <Control-Kanji> "pg_access_kinput_start %W"; + $wn.c bind q <Control-Kanji> "pgaccess_kinput_start %W"; } } else { $wn.c bind q <Key> {} @@ -2175,7 +2175,7 @@ proc vTclWindow.pgaw:Permissions {base} { # # This file contains Tcl procedures used to input Japanese text. # -# $Header: /cvsroot/pgsql/src/bin/pgaccess/lib/Attic/tables.tcl,v 1.10 2001/08/10 23:29:46 tgl Exp $ +# $Header: /cvsroot/pgsql/src/bin/pgaccess/lib/Attic/tables.tcl,v 1.10.2.1 2002/02/18 04:12:34 ishii Exp $ # # Copyright (c) 1993 Software Research Associates, Inc. # |