From: Kim F. Storm Date: Thu, 8 Dec 2005 20:56:35 +0000 (+0000) Subject: (cua--extract-rectangle): Don't use \s in strings. X-Git-Tag: emacs-pretest-22.0.90~5433 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ea707ec6a09de300fb0aebfcd3ddc0b6d3525532;p=emacs.git (cua--extract-rectangle): Don't use \s in strings. --- 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))