diff options
| author | Stefan Monnier | 2014-10-02 08:44:48 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2014-10-02 08:44:48 -0400 |
| commit | 4ea7bee0ab400eeb9e880e702fb7d3862ca05f91 (patch) | |
| tree | a88a2df80d668f41857258bac78dadf9e5f83dff | |
| parent | b861616a6c826b57a10deeb3c4dcdb4d4c98583d (diff) | |
| download | emacs-4ea7bee0ab400eeb9e880e702fb7d3862ca05f91.tar.gz emacs-4ea7bee0ab400eeb9e880e702fb7d3862ca05f91.zip | |
* simple.el (deactivate-mark): Fix typo.
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
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'." | |||
| 4528 | ;; If another program has acquired the selection, region | 4528 | ;; If another program has acquired the selection, region |
| 4529 | ;; deactivation should not clobber it (Bug#11772). | 4529 | ;; deactivation should not clobber it (Bug#11772). |
| 4530 | ((and (/= (region-beginning) (region-end)) | 4530 | ((and (/= (region-beginning) (region-end)) |
| 4531 | (or (call-gui gui-selection-owner-p 'PRIMARY) | 4531 | (or (gui-call gui-selection-owner-p 'PRIMARY) |
| 4532 | (null (gui-selection-exists-p 'PRIMARY)))) | 4532 | (null (gui-selection-exists-p 'PRIMARY)))) |
| 4533 | (gui-set-selection 'PRIMARY | 4533 | (gui-set-selection 'PRIMARY |
| 4534 | (funcall region-extract-function nil))))) | 4534 | (funcall region-extract-function nil))))) |