summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-04-22 03:51:25 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-04-22 03:51:25 +0000
commitfdc496e7d1a7eade06cdd9a6de74a385033ff6fc (patch)
tree7525ffe68c7aad0526e10a910cb6f28f50531bfe /src/term.c
parent401e9e5757be9ece5a0002b0d20f93c954c9f0ae (diff)
downloademacs-fdc496e7d1a7eade06cdd9a6de74a385033ff6fc.tar.gz
* term.c (Vsuspend_tty_functions, Vresume_tty_functions): Doc fixes,
replacing "terminal id" with "terminal object".
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c4
1 files changed, 2 insertions, 2 deletions
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. */);
DEFVAR_LISP ("suspend-tty-functions", &Vsuspend_tty_functions,
doc: /* Functions to be run after suspending a tty.
-The functions are run with one argument, the terminal id to be suspended.
+The functions are run with one argument, the terminal object to be suspended.
See `suspend-tty'. */);
Vsuspend_tty_functions = Qnil;
DEFVAR_LISP ("resume-tty-functions", &Vresume_tty_functions,
doc: /* Functions to be run after resuming a tty.
-The functions are run with one argument, the terminal id that was revived.
+The functions are run with one argument, the terminal object that was revived.
See `resume-tty'. */);
Vresume_tty_functions = Qnil;