# HG changeset patch # User Kim F. Storm # Date 1142798373 0 # Node ID e963763ec80a29575229b8643ef840f5356d8d9b # Parent 96795267cd9b77b2b1fd85c3f17a875c828a1c33 (cua--highlight-rectangle): Set overlay cursor property value to 2 (to align with C level change). diff -r 96795267cd9b -r e963763ec80a lisp/emulation/cua-rect.el --- a/lisp/emulation/cua-rect.el Sun Mar 19 19:59:17 2006 +0000 +++ b/lisp/emulation/cua-rect.el Sun Mar 19 19:59:33 2006 +0000 @@ -799,8 +799,8 @@ (if cua--virtual-edges-debug ?, ?\s)) 'face rface)) (if (cua--rectangle-right-side) - (put-text-property (1- (length ms)) (length ms) 'cursor t ms) - (put-text-property 0 1 'cursor t ms)) + (put-text-property (1- (length ms)) (length ms) 'cursor 2 ms) + (put-text-property 0 1 'cursor 2 ms)) (setq bs (concat bs ms)) (setq rface nil)) (t @@ -810,8 +810,8 @@ (if cua--virtual-edges-debug ?~ ?\s)) 'face rface)) (if (cua--rectangle-right-side) - (put-text-property (1- (length as)) (length as) 'cursor t as) - (put-text-property 0 1 'cursor t as)) + (put-text-property (1- (length as)) (length as) 'cursor 2 as) + (put-text-property 0 1 'cursor 2 as)) (if (/= pr le) (setq e (1- e)))))))) ;; Trim old leading overlays.