aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2009-04-22 03:43:06 +0000
committerChong Yidong2009-04-22 03:43:06 +0000
commit401e9e5757be9ece5a0002b0d20f93c954c9f0ae (patch)
treeeccb31b6bd4af9c86d8932beed53989fd24d828a /src
parente0c3684aca21b1eb1418271a6f8b97dbd035f419 (diff)
downloademacs-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/ChangeLog7
-rw-r--r--src/term.c36
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 @@
12009-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
12009-04-21 Kenichi Handa <handa@m17n.org> 82009-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
2100TERMINAL can be a terminal id, a frame or nil (meaning the selected 2100TERMINAL can be a terminal object, a frame, or nil (meaning the
2101frame's terminal). This function always returns nil if TERMINAL 2101selected frame's terminal). This function always returns nil if
2102is not on a tty device. */) 2102TERMINAL 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
2118TERMINAL can be a terminal id, a frame or nil (meaning the selected 2118TERMINAL can be a terminal object, a frame, or nil (meaning the
2119frame's terminal). This function always returns 0 if TERMINAL 2119selected frame's terminal). This function always returns 0 if
2120is not on a tty device. */) 2120TERMINAL 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.
2304Returns nil if TERMINAL is not on a tty device. 2304Returns nil if TERMINAL is not on a tty device.
2305 2305
2306TERMINAL can be a terminal id, a frame or nil (meaning the selected 2306TERMINAL can be a terminal object, a frame, or nil (meaning the
2307frame's terminal). */) 2307selected frame's terminal). */)
2308 (terminal) 2308 (terminal)
2309 Lisp_Object terminal; 2309 Lisp_Object terminal;
2310{ 2310{
@@ -2322,9 +2322,9 @@ frame's terminal). */)
2322DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0, 2322DEFUN ("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
2325TERMINAL can be a terminal id, a frame or nil (meaning the selected 2325TERMINAL can be a terminal object, a frame, or nil (meaning the
2326frame's terminal). This function always returns nil if TERMINAL 2326selected frame's terminal). This function always returns nil if
2327is not on a tty device. */) 2327TERMINAL 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
2343do not really do underlining, but say that they do. This function has 2343do not really do underlining, but say that they do. This function has
2344no effect if used on a non-tty terminal. 2344no effect if used on a non-tty terminal.
2345 2345
2346TERMINAL can be a terminal id, a frame or nil (meaning the selected 2346TERMINAL can be a terminal object, a frame or nil (meaning the
2347frame's terminal). This function always returns nil if TERMINAL 2347selected frame's terminal). This function always returns nil if
2348is not on a tty device. */) 2348TERMINAL 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,
2366but input is not read from them and if they change, their display is 2366but input is not read from them and if they change, their display is
2367not updated. 2367not updated.
2368 2368
2369TTY may be a terminal id, a frame, or nil for the terminal device of 2369TTY may be a terminal object, a frame, or nil for the terminal device
2370the currently selected frame. 2370of the currently selected frame.
2371 2371
2372This function runs `suspend-tty-functions' after suspending the 2372This function runs `suspend-tty-functions' after suspending the
2373device. The functions are run with one arg, the id of the suspended 2373device. 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
2443suspended. 2443suspended.
2444 2444
2445TTY may be a terminal id, a frame, or nil for the terminal device of 2445TTY may be a terminal object, a frame, or nil (meaning the selected
2446the currently selected frame. */) 2446frame's terminal). */)
2447 (tty) 2447 (tty)
2448 Lisp_Object tty; 2448 Lisp_Object tty;
2449{ 2449{