Function: system-sleep-unblock-sleep
system-sleep-unblock-sleep is an autoloaded and byte-compiled function
defined in system-sleep.el.gz.
Signature
(system-sleep-unblock-sleep TOKEN)
Documentation
Unblock the system sleep block associated with TOKEN.
Return non-nil TOKEN was unblocked, or nil if not. In the unlikely event that unblock fails, the block will be released when the Emacs process dies.
Source Code
;; Defined in /usr/src/emacs/lisp/system-sleep.el.gz
;;;###autoload
(defun system-sleep-unblock-sleep (token)
"Unblock the system sleep block associated with TOKEN.
Return non-nil TOKEN was unblocked, or nil if not.
In the unlikely event that unblock fails, the block will be released
when the Emacs process dies."
(when system-sleep--back-end
(system-sleep--unblock-sleep token)))