diff options
author | Alan Mackenzie <acm@muc.de> | 2022-07-08 20:19:03 +0000 |
---|---|---|
committer | Alan Mackenzie <acm@muc.de> | 2022-07-08 20:19:03 +0000 |
commit | 0508d7c4d6637d63a823b66e9f87ab54c2e73b09 (patch) | |
tree | d44ebdb22d6112ef3533018224953a2639b3d006 /src/keyboard.c | |
parent | df157953612910e26cab7d1aa31b7ac5cd58d945 (diff) | |
download | emacs-0508d7c4d6637d63a823b66e9f87ab54c2e73b09.tar.gz emacs-0508d7c4d6637d63a823b66e9f87ab54c2e73b09.tar.bz2 emacs-0508d7c4d6637d63a823b66e9f87ab54c2e73b09.zip |
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.c | 2 |
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); } |