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
af1a0140
Commit
af1a0140
authored
May 14, 2002
by
Kim F. Storm
Browse files
(cua--rectangle-operation):
Don't highlight empty lines in rectangles.
parent
6df44fac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/emulation/cua-rect.el
lisp/emulation/cua-rect.el
+2
-1
No files found.
lisp/ChangeLog
View file @
af1a0140
2002-05-14 Kim F. Storm <storm@cua.dk>
* emulation/cua-rect.el (cua--rectangle-operation):
Don't highlight empty lines in rectangles.
* emulation/keypad.el: Improved commentary.
(keypad-setup, keypad-shifted-setup): Added choice to setup
Numeric keypad with decimal key; value is selected character.
...
...
lisp/emulation/cua-rect.el
View file @
af1a0140
...
...
@@ -585,7 +585,8 @@ If command is repeated at same position, delete the rectangle."
(
if
(
car
(
cdr
(
cdr
sel
)))
(
setq
v
(
null
v
))))
(
if
visible
(
funcall
fct
p
m
l
r
v
)
(
unless
(
eolp
)
(
funcall
fct
p
m
l
r
v
))
(
if
v
(
funcall
fct
p
m
l
r
)))))
(
set-marker
m
nil
)
...
...
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