Mercurial > emacs
changeset 67399:60adafc3124f
(cua--extract-rectangle): Don't use \s in strings.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Thu, 08 Dec 2005 20:56:35 +0000 |
parents | 4d2362509f27 |
children | 722a21c764a9 |
files | lisp/emulation/cua-rect.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emulation/cua-rect.el Thu Dec 08 20:56:15 2005 +0000 +++ b/lisp/emulation/cua-rect.el Thu Dec 08 20:56:35 2005 +0000 @@ -641,11 +641,11 @@ (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))