aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-12-08 20:56:35 +0000
committerKim F. Storm2005-12-08 20:56:35 +0000
commitea707ec6a09de300fb0aebfcd3ddc0b6d3525532 (patch)
treefc79974a5ce893d73dd0bbedb33ba9e4885a970c
parentc4d08335717a387e2f7a0c474fb595035991a357 (diff)
downloademacs-ea707ec6a09de300fb0aebfcd3ddc0b6d3525532.tar.gz
emacs-ea707ec6a09de300fb0aebfcd3ddc0b6d3525532.zip
(cua--extract-rectangle): Don't use \s in strings.
-rw-r--r--lisp/emulation/cua-rect.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/cua-rect.el b/lisp/emulation/cua-rect.el
index 0590af50249..e80a332751b 100644
--- a/lisp/emulation/cua-rect.el
+++ b/lisp/emulation/cua-rect.el
@@ -641,11 +641,11 @@ If command is repeated at same position, delete the rectangle."
641 (if (= (point) (line-end-position)) 641 (if (= (point) (line-end-position))
642 (setq bs (- r l) 642 (setq bs (- r l)
643 copy nil) 643 copy nil)
644 (skip-chars-forward "\s\t" e) 644 (skip-chars-forward " \t" e)
645 (setq bs (- (min r (current-column)) l) 645 (setq bs (- (min r (current-column)) l)
646 s (point)) 646 s (point))
647 (move-to-column r) 647 (move-to-column r)
648 (skip-chars-backward "\s\t" s) 648 (skip-chars-backward " \t" s)
649 (setq as (- r (max (current-column) l)) 649 (setq as (- r (max (current-column) l))
650 e (point))) 650 e (point)))
651 (setq row (if (and copy (> e s)) 651 (setq row (if (and copy (> e s))