Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ea707ec6
Commit
ea707ec6
authored
Dec 08, 2005
by
Kim F. Storm
Browse files
(cua--extract-rectangle): Don't use \s in strings.
parent
c4d08335
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/emulation/cua-rect.el
lisp/emulation/cua-rect.el
+2
-2
No files found.
lisp/emulation/cua-rect.el
View file @
ea707ec6
...
...
@@ -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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment