# HG changeset patch # User Richard M. Stallman # Date 744675080 0 # Node ID 951f354907d89f551ab290d554ab16c7e699c107 # Parent 31c5586e9d3688573173375d6fd3db66853fa61a (mouse-save-then-kill): Fix paren error in last change. diff -r 31c5586e9d36 -r 951f354907d8 lisp/mouse.el --- a/lisp/mouse.el Fri Aug 06 21:17:16 1993 +0000 +++ b/lisp/mouse.el Fri Aug 06 22:11:20 1993 +0000 @@ -363,7 +363,7 @@ (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))