diff options
author | Kim F. Storm <storm@cua.dk> | 2005-12-09 09:10:10 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-12-09 09:10:10 +0000 |
commit | 559202293294bb5d124f6567d5ffbbf509821f29 (patch) | |
tree | 2f3141878694144af499954cdfc5a6436538cad4 /lisp/emulation/cua-rect.el | |
parent | 58090a8d2868a57c49b226947230de1d7cbbeb09 (diff) | |
download | emacs-559202293294bb5d124f6567d5ffbbf509821f29.tar.gz |
(cua--extract-rectangle): Undo recent change re. \s in strings.
Diffstat (limited to 'lisp/emulation/cua-rect.el')
-rw-r--r-- | lisp/emulation/cua-rect.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/cua-rect.el b/lisp/emulation/cua-rect.el index 46974089dc2..aa82e148aff 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 " \t" e) + (skip-chars-forward "\s\t" e) (setq bs (- (min r (current-column)) l) s (point)) (move-to-column r) - (skip-chars-backward " \t" s) + (skip-chars-backward "\s\t" s) (setq as (- r (max (current-column) l)) e (point))) (setq row (if (and copy (> e s)) |