1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(mouse-save-then-kill): Fix paren error in last change.

This commit is contained in:
Richard M. Stallman 1993-08-06 22:11:20 +00:00
parent 34f04431e2
commit c4fc9e31aa

View File

@ -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))