1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

Merge remote-tracking branch 'origin/master' into feature/android

This commit is contained in:
Po Lu 2023-03-20 14:48:13 +08:00
commit a7902e9d80
65 changed files with 769 additions and 3777 deletions

View file

@ -239,7 +239,8 @@ that's not the whole story: see `after-focus-change-function'."
This function runs the abnormal hook `move-frame-functions'."
(interactive "e")
(let ((frame (posn-window (event-start event))))
(run-hook-with-args 'move-frame-functions frame)))
(when (frame-live-p frame) ;Experience shows it can die in the meantime.
(run-hook-with-args 'move-frame-functions frame))))
;;;; Arrangement of frames at startup