diff options
| author | Dan Nicolaescu | 2008-02-17 16:57:44 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-02-17 16:57:44 +0000 |
| commit | a2b84f35b3d89533a5429da46f7aa124efb1d18e (patch) | |
| tree | 99c60f19df2d01c20a6ab8b9ce3872738d2c8560 /src | |
| parent | 43c0454d44aba9617d5a1d82d327b7cbaed5fbdc (diff) | |
| download | emacs-a2b84f35b3d89533a5429da46f7aa124efb1d18e.tar.gz emacs-a2b84f35b3d89533a5429da46f7aa124efb1d18e.zip | |
* 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')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/callint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 333dd802676..25dd28a3ea5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive | ||
| 4 | with Qt. | ||
| 5 | |||
| 1 | 2008-02-17 Kenichi Handa <handa@m17n.org> | 6 | 2008-02-17 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * ftfont.c (ftfont_shape): Return Lispy number. | 8 | * ftfont.c (ftfont_shape): Return Lispy number. |
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. | |||
| 960 | When the option is non-nil, deactivation of the mark | 960 | When the option is non-nil, deactivation of the mark |
| 961 | turns off region highlighting, but commands that use the mark | 961 | turns off region highlighting, but commands that use the mark |
| 962 | behave as if the mark were still active. */); | 962 | behave as if the mark were still active. */); |
| 963 | Vmark_even_if_inactive = Qnil; | 963 | Vmark_even_if_inactive = Qt; |
| 964 | 964 | ||
| 965 | DEFVAR_LISP ("mouse-leave-buffer-hook", &Vmouse_leave_buffer_hook, | 965 | DEFVAR_LISP ("mouse-leave-buffer-hook", &Vmouse_leave_buffer_hook, |
| 966 | doc: /* Hook to run when about to switch windows with a mouse command. | 966 | doc: /* Hook to run when about to switch windows with a mouse command. |