summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-02-17 16:57:44 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-02-17 16:57:44 +0000
commita2b84f35b3d89533a5429da46f7aa124efb1d18e (patch)
tree99c60f19df2d01c20a6ab8b9ce3872738d2c8560 /src/callint.c
parent43c0454d44aba9617d5a1d82d327b7cbaed5fbdc (diff)
downloademacs-a2b84f35b3d89533a5429da46f7aa124efb1d18e.tar.gz
* simple.el (transient-mark-mode): Add an :init-value.
* startup.el (command-line): Use custom-reevaluate-setting for transient-mark-mode. * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive with Qt.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c
index 7dca5b30347..74e0e22fd6d 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -960,7 +960,7 @@ This option makes a difference in Transient Mark mode.
When the option is non-nil, deactivation of the mark
turns off region highlighting, but commands that use the mark
behave as if the mark were still active. */);
- Vmark_even_if_inactive = Qnil;
+ Vmark_even_if_inactive = Qt;
DEFVAR_LISP ("mouse-leave-buffer-hook", &Vmouse_leave_buffer_hook,
doc: /* Hook to run when about to switch windows with a mouse command.