diff options
| author | Joakim Verona | 2011-06-26 22:00:24 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-06-26 22:00:24 +0200 |
| commit | 76d08552619c83268f1353f449099f50ed6f93fa (patch) | |
| tree | 321a375628d83d5c8aeea5876cf375ec7ad93f58 /src/undo.c | |
| parent | 9fa0e291e866fb7945e18cd2ad8514090c13d510 (diff) | |
| parent | 5b66d427c05eba5493c27da28c460a129b4203cc (diff) | |
| download | emacs-76d08552619c83268f1353f449099f50ed6f93fa.tar.gz emacs-76d08552619c83268f1353f449099f50ed6f93fa.zip | |
first working example of mvc. multiple views of a slider are kept in sync
Diffstat (limited to 'src/undo.c')
| -rw-r--r-- | src/undo.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/undo.c b/src/undo.c index e7e9ae5632e..7e121e8b27d 100644 --- a/src/undo.c +++ b/src/undo.c | |||
| @@ -637,11 +637,8 @@ Return what remains of the list. */) | |||
| 637 | void | 637 | void |
| 638 | syms_of_undo (void) | 638 | syms_of_undo (void) |
| 639 | { | 639 | { |
| 640 | Qinhibit_read_only = intern_c_string ("inhibit-read-only"); | 640 | DEFSYM (Qinhibit_read_only, "inhibit-read-only"); |
| 641 | staticpro (&Qinhibit_read_only); | 641 | DEFSYM (Qapply, "apply"); |
| 642 | |||
| 643 | Qapply = intern_c_string ("apply"); | ||
| 644 | staticpro (&Qapply); | ||
| 645 | 642 | ||
| 646 | pending_boundary = Qnil; | 643 | pending_boundary = Qnil; |
| 647 | staticpro (&pending_boundary); | 644 | staticpro (&pending_boundary); |