# HG changeset patch # User Richard M. Stallman # Date 743325349 0 # Node ID 829413cfe196e914f82ca71895e9ba69f4efa165 # Parent c89f550652607147841886ecbf220ff086baf9bc (mouse-secondary-save-then-kill): When making the undo item, use an integer, not a marker, for the position. diff -r c89f55065260 -r 829413cfe196 lisp/mouse.el --- a/lisp/mouse.el Thu Jul 22 06:20:40 1993 +0000 +++ b/lisp/mouse.el Thu Jul 22 07:15:49 1993 +0000 @@ -456,7 +456,7 @@ ;; Make the undo list by hand so it is shared. (if (not (eq buffer-undo-list t)) (setq buffer-undo-list - (cons (cons (car kill-ring) start) + (cons (cons (car kill-ring) (marker-position start)) buffer-undo-list)))) ;; Otherwise, save this region. (save-excursion