diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-01-30 02:09:45 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-01-30 02:09:45 +0000 |
commit | 6de38aa35015ed6fb3613eec6a37e9a2d5ec7272 (patch) | |
tree | abbdea7e81eae8f56abc27e697f58616b4404d59 /src/undo.c | |
parent | 03c64f2e02d2bb55e335beb1c6f8f420a3489167 (diff) | |
download | emacs-6de38aa35015ed6fb3613eec6a37e9a2d5ec7272.tar.gz |
(syms_of_undo) <undo-outer-limit>: Increase value to 3 Meg.
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index 3809c83d91d..480a1b07ea6 100644 --- a/src/undo.c +++ b/src/undo.c @@ -651,7 +651,7 @@ In fact, this calls the function which is the value of `undo-outer-limit-function' with one argument, the size. The text above describes the behavior of the function that variable usually specifies. */); - Vundo_outer_limit = make_number (300000); + Vundo_outer_limit = make_number (3000000); DEFVAR_LISP ("undo-outer-limit-function", &Vundo_outer_limit_function, doc: /* Function to call when an undo list exceeds `undo-outer-limit'. |