summaryrefslogtreecommitdiff
path: root/src/pgtkterm.c
diff options
context:
space:
mode:
authorYuuki Harano <masm+github@masm11.me>2020-07-20 21:35:21 +0900
committerJeff Walsh <jeff.walsh@drtusers-MacBook-Pro.local>2020-11-24 12:24:40 +1100
commite7190d8bb251afd11ac91a3b3c64243a0e8a0cd0 (patch)
tree0af686fa2f438bd5ca276c88a93c985dcb8cbb12 /src/pgtkterm.c
parent6c4349601c852e16ae34815a36d7032de054e809 (diff)
downloademacs-e7190d8bb251afd11ac91a3b3c64243a0e8a0cd0.tar.gz
emacs-e7190d8bb251afd11ac91a3b3c64243a0e8a0cd0.tar.bz2
emacs-e7190d8bb251afd11ac91a3b3c64243a0e8a0cd0.zip
Fix non-English layout does not work
* src/pgtkterm.c (key_press_event): Use Vlocale_coding_system.
Diffstat (limited to 'src/pgtkterm.c')
-rw-r--r--src/pgtkterm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pgtkterm.c b/src/pgtkterm.c
index 6b193bae3eb..f49bcac2943 100644
--- a/src/pgtkterm.c
+++ b/src/pgtkterm.c
@@ -5492,9 +5492,9 @@ key_press_event (GtkWidget * widget, GdkEvent * event, gpointer * user_data)
{
/* Decode the input data. */
- /* The input should be decoded with `coding_system'
- which depends on which X*LookupString function
- we used just above and the locale. */
+ /* The input should be decoded with locale `coding_system'. */
+ if (!NILP (Vlocale_coding_system))
+ coding_system = Vlocale_coding_system;
setup_coding_system (coding_system, &coding);
coding.src_multibyte = false;
coding.dst_multibyte = true;