From: Stefan Monnier Date: Thu, 2 Oct 2014 12:44:48 +0000 (-0400) Subject: * simple.el (deactivate-mark): Fix typo. X-Git-Tag: emacs-25.0.90~2635^2~679^2~160 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ea7bee0ab400eeb9e880e702fb7d3862ca05f91;p=emacs.git * simple.el (deactivate-mark): Fix typo. --- diff --git a/lisp/simple.el b/lisp/simple.el index f96904cc177..fc5ecbad10e 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -4528,7 +4528,7 @@ run `deactivate-mark-hook'." ;; If another program has acquired the selection, region ;; deactivation should not clobber it (Bug#11772). ((and (/= (region-beginning) (region-end)) - (or (call-gui gui-selection-owner-p 'PRIMARY) + (or (gui-call gui-selection-owner-p 'PRIMARY) (null (gui-selection-exists-p 'PRIMARY)))) (gui-set-selection 'PRIMARY (funcall region-extract-function nil)))))