summaryrefslogtreecommitdiff
path: root/lisp/mouse.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-08-06 22:11:20 +0000
committerRichard M. Stallman <rms@gnu.org>1993-08-06 22:11:20 +0000
commit95f92a1d48c713cd317239091568cf82b0ba5669 (patch)
tree1106bff92554e396905017312ac3739ac43ad5d4 /lisp/mouse.el
parentce3b87e911b96270de06f1940f6abc31c26c4427 (diff)
downloademacs-95f92a1d48c713cd317239091568cf82b0ba5669.tar.gz
(mouse-save-then-kill): Fix paren error in last change.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r--lisp/mouse.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index 61e5da271e3..565ef5fd147 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -363,7 +363,7 @@ which prepares for a second click to delete the text."
(setq tail (cdr tail)))
;; Replace it with an entry for the entire deleted text.
(and tail
- (setcar tail (cons (car kill-ring) (point))))))))
+ (setcar tail (cons (car kill-ring) (point)))))))
;; Otherwise, save this region.
(mouse-set-mark-fast click)
(kill-ring-save (point) (mark t))