diff options
| author | Gerd Möllmann | 2025-01-25 21:18:00 +0100 |
|---|---|---|
| committer | Gerd Möllmann | 2025-01-25 21:20:55 +0100 |
| commit | 35d39278599caf30eb4bfbd83118ffe15d2bc705 (patch) | |
| tree | c4ee4b9e9f15183a4d74b6f9e200e9d1c7cfd462 | |
| parent | 85aec497c71e26b66ecfc85c20d7888336300e1f (diff) | |
| download | emacs-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.c | 6 |
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, | |||
| 3293 | Return the symbol `icon' if FRAME is iconified or \"minimized\". | 3293 | Return the symbol `icon' if FRAME is iconified or \"minimized\". |
| 3294 | Return nil if FRAME was made invisible, via `make-frame-invisible'. | 3294 | Return nil if FRAME was made invisible, via `make-frame-invisible'. |
| 3295 | On graphical displays, invisible frames are not updated and are | 3295 | On graphical displays, invisible frames are not updated and are |
| 3296 | usually not displayed at all, even in a window system's \"taskbar\". | 3296 | usually not displayed at all, even in a window system's \"taskbar\". */) |
| 3297 | |||
| 3298 | If FRAME is a text terminal frame, this always returns t. | ||
| 3299 | Such frames are always considered visible, whether or not they are | ||
| 3300 | currently 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); |