aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2005-01-30 02:09:45 +0000
committerLuc Teirlinck2005-01-30 02:09:45 +0000
commit6de38aa35015ed6fb3613eec6a37e9a2d5ec7272 (patch)
treeabbdea7e81eae8f56abc27e697f58616b4404d59 /src
parent03c64f2e02d2bb55e335beb1c6f8f420a3489167 (diff)
downloademacs-6de38aa35015ed6fb3613eec6a37e9a2d5ec7272.tar.gz
emacs-6de38aa35015ed6fb3613eec6a37e9a2d5ec7272.zip
(syms_of_undo) <undo-outer-limit>: Increase value to 3 Meg.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/undo.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 14a41374d33..97f88d2b3f8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,7 @@
12005-01-29 Luc Teirlinck <teirllm@auburn.edu> 12005-01-29 Luc Teirlinck <teirllm@auburn.edu>
2 2
3 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update. 3 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
4 Increase value to 3 Meg.
4 5
52005-01-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 62005-01-29 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
6 7
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
651`undo-outer-limit-function' with one argument, the size. 651`undo-outer-limit-function' with one argument, the size.
652The text above describes the behavior of the function 652The text above describes the behavior of the function
653that variable usually specifies. */); 653that variable usually specifies. */);
654 Vundo_outer_limit = make_number (300000); 654 Vundo_outer_limit = make_number (3000000);
655 655
656 DEFVAR_LISP ("undo-outer-limit-function", &Vundo_outer_limit_function, 656 DEFVAR_LISP ("undo-outer-limit-function", &Vundo_outer_limit_function,
657 doc: /* Function to call when an undo list exceeds `undo-outer-limit'. 657 doc: /* Function to call when an undo list exceeds `undo-outer-limit'.