aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-04-22 03:51:25 +0000
committerChong Yidong2009-04-22 03:51:25 +0000
commitfdc496e7d1a7eade06cdd9a6de74a385033ff6fc (patch)
tree7525ffe68c7aad0526e10a910cb6f28f50531bfe
parent401e9e5757be9ece5a0002b0d20f93c954c9f0ae (diff)
downloademacs-fdc496e7d1a7eade06cdd9a6de74a385033ff6fc.tar.gz
emacs-fdc496e7d1a7eade06cdd9a6de74a385033ff6fc.zip
* term.c (Vsuspend_tty_functions, Vresume_tty_functions): Doc fixes,
replacing "terminal id" with "terminal object".
-rw-r--r--src/ChangeLog4
-rw-r--r--src/term.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 061d2dac5c0..298222cdc0c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,8 +2,8 @@
2 2
3 * term.c (Ftty_display_color_p, Ftty_display_color_cells) 3 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
4 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty) 4 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
5 (Fresume_tty): Doc fixes, replacing "terminal id" with "terminal 5 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions): Doc
6 object". 6 fixes, replacing "terminal id" with "terminal object".
7 7
82009-04-21 Kenichi Handa <handa@m17n.org> 82009-04-21 Kenichi Handa <handa@m17n.org>
9 9
diff --git a/src/term.c b/src/term.c
index 30f1c201ccd..d30ab8709bf 100644
--- a/src/term.c
+++ b/src/term.c
@@ -4049,14 +4049,14 @@ This variable can be used by terminal emulator packages. */);
4049 4049
4050 DEFVAR_LISP ("suspend-tty-functions", &Vsuspend_tty_functions, 4050 DEFVAR_LISP ("suspend-tty-functions", &Vsuspend_tty_functions,
4051 doc: /* Functions to be run after suspending a tty. 4051 doc: /* Functions to be run after suspending a tty.
4052The functions are run with one argument, the terminal id to be suspended. 4052The functions are run with one argument, the terminal object to be suspended.
4053See `suspend-tty'. */); 4053See `suspend-tty'. */);
4054 Vsuspend_tty_functions = Qnil; 4054 Vsuspend_tty_functions = Qnil;
4055 4055
4056 4056
4057 DEFVAR_LISP ("resume-tty-functions", &Vresume_tty_functions, 4057 DEFVAR_LISP ("resume-tty-functions", &Vresume_tty_functions,
4058 doc: /* Functions to be run after resuming a tty. 4058 doc: /* Functions to be run after resuming a tty.
4059The functions are run with one argument, the terminal id that was revived. 4059The functions are run with one argument, the terminal object that was revived.
4060See `resume-tty'. */); 4060See `resume-tty'. */);
4061 Vresume_tty_functions = Qnil; 4061 Vresume_tty_functions = Qnil;
4062 4062