diff options
| author | Richard M. Stallman | 1992-06-04 06:43:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-06-04 06:43:29 +0000 |
| commit | 06ef7355233ad4c48339be5bd690beb74fae9056 (patch) | |
| tree | c219ea3831cd01ca9c47be531c71938422b631ef /src/keyboard.c | |
| parent | aa734e174a97c389893767aa1349e55fc58b5a05 (diff) | |
| download | emacs-06ef7355233ad4c48339be5bd690beb74fae9056.tar.gz emacs-06ef7355233ad4c48339be5bd690beb74fae9056.zip | |
*** empty log message ***
Diffstat (limited to 'src/keyboard.c')
| -rw-r--r-- | src/keyboard.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 910a4b9a77f..22ce74ed963 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -155,7 +155,7 @@ Lisp_Object meta_prefix_char; | |||
| 155 | /* Last size recorded for a current buffer which is not a minibuffer. */ | 155 | /* Last size recorded for a current buffer which is not a minibuffer. */ |
| 156 | static int last_non_minibuf_size; | 156 | static int last_non_minibuf_size; |
| 157 | 157 | ||
| 158 | /* Number of idle seconds before an auto-save. */ | 158 | /* Number of idle seconds before an auto-save and garbage collection. */ |
| 159 | static Lisp_Object Vauto_save_timeout; | 159 | static Lisp_Object Vauto_save_timeout; |
| 160 | 160 | ||
| 161 | /* Total number of times read_char has returned. */ | 161 | /* Total number of times read_char has returned. */ |
| @@ -3569,7 +3569,9 @@ Zero means disable autosaving due to number of characters typed."); | |||
| 3569 | 3569 | ||
| 3570 | DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, | 3570 | DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, |
| 3571 | "*Number of seconds idle time before auto-save.\n\ | 3571 | "*Number of seconds idle time before auto-save.\n\ |
| 3572 | Zero or nil means disable auto-saving due to idleness."); | 3572 | Zero or nil means disable auto-saving due to idleness.\n\ |
| 3573 | After auto-saving due to this many seconds of idle time,\n\ | ||
| 3574 | Emacs also does a garbage collection if that seems to be warranted." | ||
| 3573 | XFASTINT (Vauto_save_timeout) = 30; | 3575 | XFASTINT (Vauto_save_timeout) = 30; |
| 3574 | 3576 | ||
| 3575 | DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, | 3577 | DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, |