aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuri Linkov2019-09-08 23:18:45 +0300
committerJuri Linkov2019-09-08 23:18:45 +0300
commit89ef791c07637953f514c0ead2f5935ac41ebc33 (patch)
treed59dc2ba8a727abf19fe597fbc2c6d06416df58e /src
parenta7289c0488fd55260d29685b6c1b79b8a3cd8f92 (diff)
downloademacs-89ef791c07637953f514c0ead2f5935ac41ebc33.tar.gz
emacs-89ef791c07637953f514c0ead2f5935ac41ebc33.zip
Small fixes for tty and w32.
* lisp/menu-bar.el (showhide-tab-bar): Visible on tty too. * lisp/tab-bar.el (tab-bar-mode): Add binding [(control shift tab)] for w32. * lisp/tab-line.el (tab-line-add-tab): Use tmm-prompt for buffer-menu on tty. * src/w32term.c (w32_read_socket): Fix tool-bar clicks.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c
index dc516390d16..4d230a2293c 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -5097,7 +5097,7 @@ w32_read_socket (struct terminal *terminal,
5097 int x = XFIXNAT (inev.x); 5097 int x = XFIXNAT (inev.x);
5098 int y = XFIXNAT (inev.y); 5098 int y = XFIXNAT (inev.y);
5099 5099
5100 window = window_from_coordinates (f, x, y, 0, 1, 0); 5100 window = window_from_coordinates (f, x, y, 0, 1, 1);
5101 5101
5102 if (EQ (window, f->tab_bar_window)) 5102 if (EQ (window, f->tab_bar_window))
5103 { 5103 {
@@ -5122,7 +5122,7 @@ w32_read_socket (struct terminal *terminal,
5122 int x = XFIXNAT (inev.x); 5122 int x = XFIXNAT (inev.x);
5123 int y = XFIXNAT (inev.y); 5123 int y = XFIXNAT (inev.y);
5124 5124
5125 window = window_from_coordinates (f, x, y, 0, 1, 0); 5125 window = window_from_coordinates (f, x, y, 0, 1, 1);
5126 5126
5127 if (EQ (window, f->tool_bar_window)) 5127 if (EQ (window, f->tool_bar_window))
5128 { 5128 {