mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(cua--extract-rectangle): Don't use \s in strings.
This commit is contained in:
parent
c4d0833571
commit
ea707ec6a0
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue