]> git.eshelyaron.com Git - emacs.git/commitdiff
* term.c (Vsuspend_tty_functions, Vresume_tty_functions): Doc fixes,
authorChong Yidong <cyd@stupidchicken.com>
Wed, 22 Apr 2009 03:51:25 +0000 (03:51 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 22 Apr 2009 03:51:25 +0000 (03:51 +0000)
replacing "terminal id" with "terminal object".

src/ChangeLog
src/term.c

index 061d2dac5c0d48bb76890c1c9fcaa964d9a35dee..298222cdc0c10196320d9c068f21b9bf9a086d21 100644 (file)
@@ -2,8 +2,8 @@
 
        * 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".
+       (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions): Doc
+       fixes, replacing "terminal id" with "terminal object".
 
 2009-04-21  Kenichi Handa  <handa@m17n.org>
 
index 30f1c201ccda6dbc83f658a6cfea7dba2e43e587..d30ab8709bf507e56cb88561d65f9faf61c1ae70 100644 (file)
@@ -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;