aboutsummaryrefslogtreecommitdiffstats
path: root/src/undo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/undo.c b/src/undo.c
index 2dde02b99a9..948dcf9ec1a 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -1,5 +1,5 @@
1/* undo handling for GNU Emacs. 1/* undo handling for GNU Emacs.
2 Copyright (C) 1990, 1993-1994, 2000-2014 Free Software Foundation, 2 Copyright (C) 1990, 1993-1994, 2000-2015 Free Software Foundation,
3 Inc. 3 Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -34,12 +34,6 @@ static struct buffer *last_undo_buffer;
34static struct buffer *last_boundary_buffer; 34static struct buffer *last_boundary_buffer;
35static ptrdiff_t last_boundary_position; 35static ptrdiff_t last_boundary_position;
36 36
37Lisp_Object Qinhibit_read_only;
38
39/* Marker for function call undo list elements. */
40
41Lisp_Object Qapply;
42
43/* The first time a command records something for undo. 37/* The first time a command records something for undo.
44 it also allocates the undo-boundary object 38 it also allocates the undo-boundary object
45 which will be added to the list at the end of the command. 39 which will be added to the list at the end of the command.
@@ -461,6 +455,8 @@ void
461syms_of_undo (void) 455syms_of_undo (void)
462{ 456{
463 DEFSYM (Qinhibit_read_only, "inhibit-read-only"); 457 DEFSYM (Qinhibit_read_only, "inhibit-read-only");
458
459 /* Marker for function call undo list elements. */
464 DEFSYM (Qapply, "apply"); 460 DEFSYM (Qapply, "apply");
465 461
466 pending_boundary = Qnil; 462 pending_boundary = Qnil;