diff options
| author | Chong Yidong | 2009-04-22 03:43:06 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-04-22 03:43:06 +0000 |
| commit | 401e9e5757be9ece5a0002b0d20f93c954c9f0ae (patch) | |
| tree | eccb31b6bd4af9c86d8932beed53989fd24d828a /src | |
| parent | e0c3684aca21b1eb1418271a6f8b97dbd035f419 (diff) | |
| download | emacs-401e9e5757be9ece5a0002b0d20f93c954c9f0ae.tar.gz emacs-401e9e5757be9ece5a0002b0d20f93c954c9f0ae.zip | |
* term.c (Ftty_display_color_p, Ftty_display_color_cells)
(Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
(Fresume_tty): Doc fixes, replacing "terminal id" with "terminal
object".
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/term.c | 36 |
2 files changed, 25 insertions, 18 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 26cfda927a5..061d2dac5c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2009-04-22 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * term.c (Ftty_display_color_p, Ftty_display_color_cells) | ||
| 4 | (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty) | ||
| 5 | (Fresume_tty): Doc fixes, replacing "terminal id" with "terminal | ||
| 6 | object". | ||
| 7 | |||
| 1 | 2009-04-21 Kenichi Handa <handa@m17n.org> | 8 | 2009-04-21 Kenichi Handa <handa@m17n.org> |
| 2 | 9 | ||
| 3 | * font.c (font_load_for_lface): Cancel previous change (bug#2994). | 10 | * font.c (font_load_for_lface): Cancel previous change (bug#2994). |
diff --git a/src/term.c b/src/term.c index 1c686eb521c..30f1c201ccd 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -2097,9 +2097,9 @@ DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p, | |||
| 2097 | 0, 1, 0, | 2097 | 0, 1, 0, |
| 2098 | doc: /* Return non-nil if the tty device TERMINAL can display colors. | 2098 | doc: /* Return non-nil if the tty device TERMINAL can display colors. |
| 2099 | 2099 | ||
| 2100 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 2100 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 2101 | frame's terminal). This function always returns nil if TERMINAL | 2101 | selected frame's terminal). This function always returns nil if |
| 2102 | is not on a tty device. */) | 2102 | TERMINAL does not refer to a text-only terminal. */) |
| 2103 | (terminal) | 2103 | (terminal) |
| 2104 | Lisp_Object terminal; | 2104 | Lisp_Object terminal; |
| 2105 | { | 2105 | { |
| @@ -2115,9 +2115,9 @@ DEFUN ("tty-display-color-cells", Ftty_display_color_cells, | |||
| 2115 | Stty_display_color_cells, 0, 1, 0, | 2115 | Stty_display_color_cells, 0, 1, 0, |
| 2116 | doc: /* Return the number of colors supported by the tty device TERMINAL. | 2116 | doc: /* Return the number of colors supported by the tty device TERMINAL. |
| 2117 | 2117 | ||
| 2118 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 2118 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 2119 | frame's terminal). This function always returns 0 if TERMINAL | 2119 | selected frame's terminal). This function always returns 0 if |
| 2120 | is not on a tty device. */) | 2120 | TERMINAL does not refer to a text-only terminal. */) |
| 2121 | (terminal) | 2121 | (terminal) |
| 2122 | Lisp_Object terminal; | 2122 | Lisp_Object terminal; |
| 2123 | { | 2123 | { |
| @@ -2303,8 +2303,8 @@ DEFUN ("tty-type", Ftty_type, Stty_type, 0, 1, 0, | |||
| 2303 | doc: /* Return the type of the tty device that TERMINAL uses. | 2303 | doc: /* Return the type of the tty device that TERMINAL uses. |
| 2304 | Returns nil if TERMINAL is not on a tty device. | 2304 | Returns nil if TERMINAL is not on a tty device. |
| 2305 | 2305 | ||
| 2306 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 2306 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 2307 | frame's terminal). */) | 2307 | selected frame's terminal). */) |
| 2308 | (terminal) | 2308 | (terminal) |
| 2309 | Lisp_Object terminal; | 2309 | Lisp_Object terminal; |
| 2310 | { | 2310 | { |
| @@ -2322,9 +2322,9 @@ frame's terminal). */) | |||
| 2322 | DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0, | 2322 | DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0, |
| 2323 | doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process. | 2323 | doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process. |
| 2324 | 2324 | ||
| 2325 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 2325 | TERMINAL can be a terminal object, a frame, or nil (meaning the |
| 2326 | frame's terminal). This function always returns nil if TERMINAL | 2326 | selected frame's terminal). This function always returns nil if |
| 2327 | is not on a tty device. */) | 2327 | TERMINAL is not on a tty device. */) |
| 2328 | (terminal) | 2328 | (terminal) |
| 2329 | Lisp_Object terminal; | 2329 | Lisp_Object terminal; |
| 2330 | { | 2330 | { |
| @@ -2343,9 +2343,9 @@ This is used to override the terminfo data, for certain terminals that | |||
| 2343 | do not really do underlining, but say that they do. This function has | 2343 | do not really do underlining, but say that they do. This function has |
| 2344 | no effect if used on a non-tty terminal. | 2344 | no effect if used on a non-tty terminal. |
| 2345 | 2345 | ||
| 2346 | TERMINAL can be a terminal id, a frame or nil (meaning the selected | 2346 | TERMINAL can be a terminal object, a frame or nil (meaning the |
| 2347 | frame's terminal). This function always returns nil if TERMINAL | 2347 | selected frame's terminal). This function always returns nil if |
| 2348 | is not on a tty device. */) | 2348 | TERMINAL does not refer to a text-only terminal. */) |
| 2349 | (terminal) | 2349 | (terminal) |
| 2350 | Lisp_Object terminal; | 2350 | Lisp_Object terminal; |
| 2351 | { | 2351 | { |
| @@ -2366,8 +2366,8 @@ access to the tty device. Frames that use the device are not deleted, | |||
| 2366 | but input is not read from them and if they change, their display is | 2366 | but input is not read from them and if they change, their display is |
| 2367 | not updated. | 2367 | not updated. |
| 2368 | 2368 | ||
| 2369 | TTY may be a terminal id, a frame, or nil for the terminal device of | 2369 | TTY may be a terminal object, a frame, or nil for the terminal device |
| 2370 | the currently selected frame. | 2370 | of the currently selected frame. |
| 2371 | 2371 | ||
| 2372 | This function runs `suspend-tty-functions' after suspending the | 2372 | This function runs `suspend-tty-functions' after suspending the |
| 2373 | device. The functions are run with one arg, the id of the suspended | 2373 | device. The functions are run with one arg, the id of the suspended |
| @@ -2442,8 +2442,8 @@ device. | |||
| 2442 | `resume-tty' does nothing if it is called on a device that is not | 2442 | `resume-tty' does nothing if it is called on a device that is not |
| 2443 | suspended. | 2443 | suspended. |
| 2444 | 2444 | ||
| 2445 | TTY may be a terminal id, a frame, or nil for the terminal device of | 2445 | TTY may be a terminal object, a frame, or nil (meaning the selected |
| 2446 | the currently selected frame. */) | 2446 | frame's terminal). */) |
| 2447 | (tty) | 2447 | (tty) |
| 2448 | Lisp_Object tty; | 2448 | Lisp_Object tty; |
| 2449 | { | 2449 | { |