aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2004-12-23 00:17:01 +0000
committerRichard M. Stallman <[email protected]>2004-12-23 00:17:01 +0000
commit55f4edbcd246d8ea1715687a7aeeb3afe35c0345 (patch)
tree6013a6f67d40881579508ab06830c61fe529e9be /src
parent8e43e4b2f912fe94566a6d78a087d679bee5627d (diff)
(main): If batch mode, set Vundo_outer_limit to nil.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog11
-rw-r--r--src/emacs.c5
2 files changed, 15 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 0a6612e962..8d09c5bfd2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,14 @@
+2004-12-22 Richard M. Stallman <[email protected]>
+
+ * emacs.c (main): If batch mode, set Vundo_outer_limit to nil.
+
+ * lisp.h (Vundo_outer_limit): Fix decl.
+
+ * undo.c (Vundo_outer_limit): Replaces undo_outer_limit.
+ Uses changed.
+ (syms_of_undo): Initialize appropriately.
+ (truncate_undo_list): If it's nil, there's no limit.
+
2004-12-22 Kenichi Handa <[email protected]>
* xselect.c (Fx_get_cut_buffer_internal): Return a unibyte string.
diff --git a/src/emacs.c b/src/emacs.c
index 791e13dd6d..5c62ee071f 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1133,7 +1133,10 @@ main (argc, argv
/* Handle the -batch switch, which means don't do interactive display. */
noninteractive = 0;
if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
- noninteractive = 1;
+ {
+ noninteractive = 1;
+ Vundo_outer_limit = Qnil;
+ }
if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args))
{
noninteractive = 1; /* Set batch mode. */