summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2022-07-08 20:19:03 +0000
committerAlan Mackenzie <acm@muc.de>2022-07-08 20:19:03 +0000
commit0508d7c4d6637d63a823b66e9f87ab54c2e73b09 (patch)
treed44ebdb22d6112ef3533018224953a2639b3d006 /src/keyboard.c
parentdf157953612910e26cab7d1aa31b7ac5cd58d945 (diff)
downloademacs-0508d7c4d6637d63a823b66e9f87ab54c2e73b09.tar.gz
Remove now unused parameter TRACK from do_switch_frame.
* src/lisp.h (extern do_swith_frame declaration) * src/frame.c (do_switch_frame): Remove parameter TRACK and its comment. * src/frame.c (Fselect_frame, Fhandle_switch_frame, delete_frame) * src/keyboard.c (quit_throw_to_read_char) * src/minibuf.c (read_minibuf_unwind (twice)) * src/window.c (Fset_window_configuration): Remove argument TRACK.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index a520e533979..7c13ac96114 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11459,7 +11459,7 @@ quit_throw_to_read_char (bool from_signal)
if (FRAMEP (internal_last_event_frame)
&& !EQ (internal_last_event_frame, selected_frame))
do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
- 0, 0, Qnil);
+ 0, Qnil);
sys_longjmp (getcjmp, 1);
}