summaryrefslogtreecommitdiff
path: root/lisp/emulation
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-12-08 20:56:35 +0000
committerKim F. Storm <storm@cua.dk>2005-12-08 20:56:35 +0000
commitea707ec6a09de300fb0aebfcd3ddc0b6d3525532 (patch)
treefc79974a5ce893d73dd0bbedb33ba9e4885a970c /lisp/emulation
parentc4d08335717a387e2f7a0c474fb595035991a357 (diff)
(cua--extract-rectangle): Don't use \s in strings.
Diffstat (limited to 'lisp/emulation')
-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."
(if (= (point) (line-end-position))
(setq bs (- r l)
copy nil)
- (skip-chars-forward "\s\t" e)
+ (skip-chars-forward " \t" e)
(setq bs (- (min r (current-column)) l)
s (point))
(move-to-column r)
- (skip-chars-backward "\s\t" s)
+ (skip-chars-backward " \t" s)
(setq as (- r (max (current-column) l))
e (point)))
(setq row (if (and copy (> e s))