Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
55f4edbc
Commit
55f4edbc
authored
Dec 23, 2004
by
Richard M. Stallman
Browse files
(main): If batch mode, set Vundo_outer_limit to nil.
parent
8e43e4b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
src/ChangeLog
src/ChangeLog
+11
-0
src/emacs.c
src/emacs.c
+4
-1
No files found.
src/ChangeLog
View file @
55f4edbc
2004-12-22 Richard M. Stallman <rms@gnu.org>
* 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 <handa@m17n.org>
* xselect.c (Fx_get_cut_buffer_internal): Return a unibyte string.
...
...
src/emacs.c
View file @
55f4edbc
...
...
@@ -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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment