Mercurial > emacs
comparison src/keyboard.c @ 687:e2b747dd6a6e
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 04 Jun 1992 06:43:29 +0000 |
parents | 71f59bd24996 |
children | cae8c3ef1677 |
comparison
equal
deleted
inserted
replaced
686:bd3068742807 | 687:e2b747dd6a6e |
---|---|
153 Lisp_Object meta_prefix_char; | 153 Lisp_Object meta_prefix_char; |
154 | 154 |
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. */ |
162 int num_input_chars; | 162 int num_input_chars; |
163 | 163 |
3567 Zero means disable autosaving due to number of characters typed."); | 3567 Zero means disable autosaving due to number of characters typed."); |
3568 auto_save_interval = 300; | 3568 auto_save_interval = 300; |
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, |
3576 "*Nonzero means echo unfinished commands after this many seconds of pause."); | 3578 "*Nonzero means echo unfinished commands after this many seconds of pause."); |
3577 echo_keystrokes = 1; | 3579 echo_keystrokes = 1; |