summaryrefslogtreecommitdiff
path: root/src/term.c
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-08-05 15:45:12 +0800
committerChong Yidong <cyd@gnu.org>2012-08-05 15:45:12 +0800
commite5d9c0d111daaff5d1a6ca26ebde4f926da5e410 (patch)
tree65465ddeb2c2e7e1d025520eefa91722fd411114 /src/term.c
parenta4f2deaaeba642460b7a0899aa61f7d68e1c69f2 (diff)
downloademacs-e5d9c0d111daaff5d1a6ca26ebde4f926da5e410.tar.gz
Docfix for kill-buffer-hook and others.
* lisp/files.el (kill-buffer-hook): Provide a defvar. * src/term.c (Vsuspend_tty_functions, Vresume_tty_functions): * src/frame.c (Vdelete_frame_functions): * src/emacs.c (Vkill_emacs_hook): Doc fix.
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 803bb6458b6..64bc88a7cf0 100644
--- a/src/term.c
+++ b/src/term.c
@@ -3571,14 +3571,14 @@ This variable can be used by terminal emulator packages. */);
#endif
DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions,
- doc: /* Functions to be run after suspending a tty.
+ doc: /* Functions run after suspending a tty.
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.
+ doc: /* Functions run after resuming a tty.
The functions are run with one argument, the terminal object that was revived.
See `resume-tty'. */);
Vresume_tty_functions = Qnil;