diff options
| author | Eli Zaretskii | 2005-04-23 12:41:24 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-04-23 12:41:24 +0000 |
| commit | 4739237ddf8e219fbed139228faa1b2343ff14bf (patch) | |
| tree | 0a03b03b2073c4d75fb631aa71d8cb0a3c27f5c5 | |
| parent | 71baa28ffb7263e33aa41f98871db845e86a4d50 (diff) | |
| download | emacs-4739237ddf8e219fbed139228faa1b2343ff14bf.tar.gz emacs-4739237ddf8e219fbed139228faa1b2343ff14bf.zip | |
(jit-lock-stealth-time): Change default value to 16.
(jit-lock-stealth-nice): Change default value to 0.5.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/jit-lock.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 927855c6571..005f2d0e617 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-04-23 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * jit-lock.el (jit-lock-stealth-time): Change default value to 16. | ||
| 4 | (jit-lock-stealth-nice): Change default value to 0.5. | ||
| 5 | |||
| 1 | 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change) | 6 | 2005-04-23 Eric Hanchrow <offby1@blarg.net> (tiny change) |
| 2 | 7 | ||
| 3 | * abbrev.el (write-abbrev-file): Write table entries in | 8 | * abbrev.el (write-abbrev-file): Write table entries in |
diff --git a/lisp/jit-lock.el b/lisp/jit-lock.el index fe64d871d96..100eb6076db 100644 --- a/lisp/jit-lock.el +++ b/lisp/jit-lock.el | |||
| @@ -69,7 +69,7 @@ Preserves the `buffer-modified-p' state of the current buffer." | |||
| 69 | :group 'jit-lock) | 69 | :group 'jit-lock) |
| 70 | 70 | ||
| 71 | 71 | ||
| 72 | (defcustom jit-lock-stealth-time 3 | 72 | (defcustom jit-lock-stealth-time 16 |
| 73 | "*Time in seconds to wait before beginning stealth fontification. | 73 | "*Time in seconds to wait before beginning stealth fontification. |
| 74 | Stealth fontification occurs if there is no input within this time. | 74 | Stealth fontification occurs if there is no input within this time. |
| 75 | If nil, stealth fontification is never performed. | 75 | If nil, stealth fontification is never performed. |
| @@ -80,7 +80,7 @@ The value of this variable is used when JIT Lock mode is turned on." | |||
| 80 | :group 'jit-lock) | 80 | :group 'jit-lock) |
| 81 | 81 | ||
| 82 | 82 | ||
| 83 | (defcustom jit-lock-stealth-nice 0.125 | 83 | (defcustom jit-lock-stealth-nice 0.5 |
| 84 | "*Time in seconds to pause between chunks of stealth fontification. | 84 | "*Time in seconds to pause between chunks of stealth fontification. |
| 85 | Each iteration of stealth fontification is separated by this amount of time, | 85 | Each iteration of stealth fontification is separated by this amount of time, |
| 86 | thus reducing the demand that stealth fontification makes on the system. | 86 | thus reducing the demand that stealth fontification makes on the system. |