From: Richard M. Stallman Date: Fri, 6 Aug 1993 22:11:20 +0000 (+0000) Subject: (mouse-save-then-kill): Fix paren error in last change. X-Git-Tag: emacs-19.34~11379 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c4fc9e31aad1b021d6b5e702252139be32ce5afd;p=emacs.git (mouse-save-then-kill): Fix paren error in last change. --- 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))