* lisp/emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
This commit is contained in:
parent
afdadaf7b6
commit
e82af72d50
2 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
2013-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
|
||||
|
||||
* simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
|
||||
to `delete' (bug#16109).
|
||||
|
||||
|
|
|
@ -222,6 +222,7 @@ be printed along with the arguments in the trace."
|
|||
(lambda (body &rest args)
|
||||
(let ((trace-level (1+ trace-level))
|
||||
(trace-buffer (get-buffer-create buffer))
|
||||
(deactivate-mark nil) ;Protect deactivate-mark.
|
||||
(ctx (funcall context)))
|
||||
(unless inhibit-trace
|
||||
(with-current-buffer trace-buffer
|
||||
|
|
Loading…
Add table
Reference in a new issue