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
05e89fea
Commit
05e89fea
authored
Jun 23, 2012
by
Chong Yidong
Browse files
* mouse.el (mouse-drag-track): Deactivate the mark before popping.
parent
96512555
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/mouse.el
lisp/mouse.el
+9
-4
No files found.
lisp/ChangeLog
View file @
05e89fea
2012-06-23 Chong Yidong <cyd@gnu.org>
* mouse.el (mouse-drag-track): Deactivate the mark before popping.
* progmodes/python.el (python-skeleton-define): Mark abbrevs as
system abbrevs.
...
...
lisp/mouse.el
View file @
05e89fea
...
...
@@ -884,10 +884,15 @@ DO-MOUSE-DRAG-REGION-POST-PROCESS should only be used by
(
copy-region-as-kill
(
mark
)
(
point
)))))
;; Otherwise, run binding of terminating up-event.
(
cond
(
do-multi-click
(
goto-char
start-point
))
(
moved-off-start
(
deactivate-mark
))
(
t
(
pop-mark
)))
(
setq
foo
(
list
(
window-buffer
(
selected-window
))
(
current-buffer
)))
(
if
do-multi-click
(
goto-char
start-point
)
(
deactivate-mark
)
(
unless
moved-off-start
(
pop-mark
)))
(
when
(
and
(
functionp
fun
)
(
=
start-hscroll
(
window-hscroll
start-window
))
;; Don't run the up-event handler if the window
...
...
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