forked from Github/emacs
Fix D-Bus event loop when executing a keyboard macro
* lisp/net/dbus.el (dbus-call-method): Don't loop for events when `executing-kbd-macro' is non-nil. (Bug#62018)
This commit is contained in:
parent
fea7708a48
commit
7177393826
1 changed files with 5 additions and 1 deletions
|
|
@ -371,7 +371,11 @@ object is returned instead of a list containing this single Lisp object.
|
|||
(apply
|
||||
#'dbus-message-internal dbus-message-type-method-call
|
||||
bus service path interface method #'dbus-call-method-handler args))
|
||||
(result (cons :pending nil)))
|
||||
(result (unless executing-kbd-macro (cons :pending nil))))
|
||||
|
||||
;; While executing a keyboard macro, we run into an infinite loop,
|
||||
;; receiving the event -1. So we don't try to get the result.
|
||||
;; (Bug#62018)
|
||||
|
||||
;; Wait until `dbus-call-method-handler' has put the result into
|
||||
;; `dbus-return-values-table'. If no timeout is given, use the
|
||||
|
|
|
|||
Loading…
Reference in a new issue