Function: posframe--make-frame-visible
posframe--make-frame-visible is a byte-compiled function defined in
posframe.el.
Signature
(posframe--make-frame-visible POSFRAME)
Documentation
Let POSFRAME visible and redraw it when needed.
Source Code
;; Defined in ~/.emacs.d/elpa/posframe-20260415.14/posframe.el
(defun posframe--make-frame-visible (posframe)
"Let POSFRAME visible and redraw it when needed."
(unless (frame-visible-p posframe)
(make-frame-visible posframe)
(when (posframe--posframe-need-redraw-p posframe)
(redraw-frame posframe))))