aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Möllmann2025-01-25 21:18:00 +0100
committerGerd Möllmann2025-01-25 21:20:55 +0100
commit35d39278599caf30eb4bfbd83118ffe15d2bc705 (patch)
treec4ee4b9e9f15183a4d74b6f9e200e9d1c7cfd462
parent85aec497c71e26b66ecfc85c20d7888336300e1f (diff)
downloademacs-35d39278599caf30eb4bfbd83118ffe15d2bc705.tar.gz
emacs-35d39278599caf30eb4bfbd83118ffe15d2bc705.zip
Change doc string of frame-visible-p
* src/frame.c (Fframe_visible_p): Don't say it always returns t for tty frames.
-rw-r--r--src/frame.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c
index 49203fce375..904b7984420 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -3293,11 +3293,7 @@ DEFUN ("frame-visible-p", Fframe_visible_p, Sframe_visible_p,
3293Return the symbol `icon' if FRAME is iconified or \"minimized\". 3293Return the symbol `icon' if FRAME is iconified or \"minimized\".
3294Return nil if FRAME was made invisible, via `make-frame-invisible'. 3294Return nil if FRAME was made invisible, via `make-frame-invisible'.
3295On graphical displays, invisible frames are not updated and are 3295On graphical displays, invisible frames are not updated and are
3296usually not displayed at all, even in a window system's \"taskbar\". 3296usually not displayed at all, even in a window system's \"taskbar\". */)
3297
3298If FRAME is a text terminal frame, this always returns t.
3299Such frames are always considered visible, whether or not they are
3300currently being displayed on the terminal. */)
3301 (Lisp_Object frame) 3297 (Lisp_Object frame)
3302{ 3298{
3303 CHECK_LIVE_FRAME (frame); 3299 CHECK_LIVE_FRAME (frame);