summaryrefslogtreecommitdiff
path: root/lisp/delsel.el
diff options
context:
space:
mode:
authorJuri Linkov <juri@jurta.org>2007-10-06 22:19:12 +0000
committerJuri Linkov <juri@jurta.org>2007-10-06 22:19:12 +0000
commit614a773aa3754defa69dec18cd590f77b94c079e (patch)
tree3f53a11689f8a71b065baa2b3062722547179a90 /lisp/delsel.el
parent28681e350ccd92660d2b1be048e49e3e1d049e5d (diff)
downloademacs-614a773aa3754defa69dec18cd590f77b94c079e.tar.gz
(delete-selection-pre-hook): Check if mouse-region-match is fbound
to not fail on mouseless tty.
Diffstat (limited to 'lisp/delsel.el')
-rw-r--r--lisp/delsel.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/delsel.el b/lisp/delsel.el
index b4ae7965a3f..82593985650 100644
--- a/lisp/delsel.el
+++ b/lisp/delsel.el
@@ -93,6 +93,7 @@ any selection."
;; That would make yank a no-op.
(when (and (string= (buffer-substring-no-properties (point) (mark))
(car kill-ring))
+ (fboundp 'mouse-region-match)
(mouse-region-match))
(current-kill 1))
(delete-active-region))