diff options
| author | Stefan Kangas | 2022-07-23 01:37:59 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2022-07-23 01:37:59 +0200 |
| commit | df508ffd2bedf901996d8899c63183aaf327f887 (patch) | |
| tree | 0d1ebe7b35b43957f5de6ffa95c5b0794df69dc5 /src | |
| parent | f268cdc185b5e98456434da0cfda963b614227fd (diff) | |
| parent | ae1ace1cf4a8b0624f72a8f76e702d78b643ea32 (diff) | |
| download | emacs-df508ffd2bedf901996d8899c63183aaf327f887.tar.gz emacs-df508ffd2bedf901996d8899c63183aaf327f887.zip | |
Merge from origin/emacs-28
ae1ace1cf4 Adjust help-fns.el tests for recent change
04bdcf4aaa * src/terminal.c (Fframe_terminal): Use active voice
7fa491a9e9 Improve 'terminal-live-p' docstring some more
b9ac8c29ae Improve terminal-live-p docstring
0b4c81a152 * lisp/net/tramp-gvfs.el (tramp-gvfs-dbus-event-vector): F...
8f8373170f * lisp/progmodes/cperl-mode.el: Don't mention obsolete arc...
25bc330a6d Make 'describe-function' say "byte-compiled" when appropriate
2b31e667be ;Improve documentation of locale-specific string comparison
Diffstat (limited to 'src')
| -rw-r--r-- | src/terminal.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/terminal.c b/src/terminal.c index dcde8e9f557..d366e9d2438 100644 --- a/src/terminal.c +++ b/src/terminal.c | |||
| @@ -402,7 +402,7 @@ but if the second argument FORCE is non-nil, you may do so. */) | |||
| 402 | 402 | ||
| 403 | DEFUN ("frame-terminal", Fframe_terminal, Sframe_terminal, 0, 1, 0, | 403 | DEFUN ("frame-terminal", Fframe_terminal, Sframe_terminal, 0, 1, 0, |
| 404 | doc: /* Return the terminal that FRAME is displayed on. | 404 | doc: /* Return the terminal that FRAME is displayed on. |
| 405 | If FRAME is nil, the selected frame is used. | 405 | If FRAME is nil, use the selected frame. |
| 406 | 406 | ||
| 407 | The terminal device is represented by its integer identifier. */) | 407 | The terminal device is represented by its integer identifier. */) |
| 408 | (Lisp_Object frame) | 408 | (Lisp_Object frame) |
| @@ -421,10 +421,12 @@ The terminal device is represented by its integer identifier. */) | |||
| 421 | 421 | ||
| 422 | DEFUN ("terminal-live-p", Fterminal_live_p, Sterminal_live_p, 1, 1, 0, | 422 | DEFUN ("terminal-live-p", Fterminal_live_p, Sterminal_live_p, 1, 1, 0, |
| 423 | doc: /* Return non-nil if OBJECT is a terminal which has not been deleted. | 423 | doc: /* Return non-nil if OBJECT is a terminal which has not been deleted. |
| 424 | Value is nil if OBJECT is not a live display terminal. | 424 | Return nil if OBJECT is not a live display terminal. |
| 425 | If object is a live display terminal, the return value indicates what | 425 | OBJECT may be a terminal object, a frame, or nil (meaning the |
| 426 | sort of output terminal it uses. See the documentation of `framep' for | 426 | selected frame's terminal). |
| 427 | possible return values. */) | 427 | If OBJECT is a live display terminal, return what sort of output |
| 428 | terminal it uses. See the documentation of `framep' for possible | ||
| 429 | return values. */) | ||
| 428 | (Lisp_Object object) | 430 | (Lisp_Object object) |
| 429 | { | 431 | { |
| 430 | struct terminal *t = decode_terminal (object); | 432 | struct terminal *t = decode_terminal (object); |