diff options
| author | Chong Yidong | 2012-08-05 15:45:12 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-08-05 15:45:12 +0800 |
| commit | e5d9c0d111daaff5d1a6ca26ebde4f926da5e410 (patch) | |
| tree | 65465ddeb2c2e7e1d025520eefa91722fd411114 /src/term.c | |
| parent | a4f2deaaeba642460b7a0899aa61f7d68e1c69f2 (diff) | |
| download | emacs-e5d9c0d111daaff5d1a6ca26ebde4f926da5e410.tar.gz emacs-e5d9c0d111daaff5d1a6ca26ebde4f926da5e410.zip | |
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.c | 4 |
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. */); | |||
| 3571 | #endif | 3571 | #endif |
| 3572 | 3572 | ||
| 3573 | DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions, | 3573 | DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions, |
| 3574 | doc: /* Functions to be run after suspending a tty. | 3574 | doc: /* Functions run after suspending a tty. |
| 3575 | The functions are run with one argument, the terminal object to be suspended. | 3575 | The functions are run with one argument, the terminal object to be suspended. |
| 3576 | See `suspend-tty'. */); | 3576 | See `suspend-tty'. */); |
| 3577 | Vsuspend_tty_functions = Qnil; | 3577 | Vsuspend_tty_functions = Qnil; |
| 3578 | 3578 | ||
| 3579 | 3579 | ||
| 3580 | DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions, | 3580 | DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions, |
| 3581 | doc: /* Functions to be run after resuming a tty. | 3581 | doc: /* Functions run after resuming a tty. |
| 3582 | The functions are run with one argument, the terminal object that was revived. | 3582 | The functions are run with one argument, the terminal object that was revived. |
| 3583 | See `resume-tty'. */); | 3583 | See `resume-tty'. */); |
| 3584 | Vresume_tty_functions = Qnil; | 3584 | Vresume_tty_functions = Qnil; |