Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
20a4f6a9
Commit
20a4f6a9
authored
Aug 25, 2014
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* emulation/cua-rect.el (cua--highlight-rectangle): Avoid error at point-min.
Fixes: debbugs:18309
parent
934cde54
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/emulation/cua-rect.el
lisp/emulation/cua-rect.el
+1
-1
No files found.
lisp/ChangeLog
View file @
20a4f6a9
2014-08-25 Glenn Morris <rgm@gnu.org>
* emulation/cua-rect.el (cua--highlight-rectangle):
Avoid error at point-min. (Bug#18309)
2014-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/python.el (python-shell-prompt-detect): Remove redundant
...
...
lisp/emulation/cua-rect.el
View file @
20a4f6a9
...
...
@@ -794,7 +794,7 @@ If command is repeated at same position, delete the rectangle."
(
make-string
(
-
l
cl0
(
if
(
and
(
=
le
pl
)
(
/=
le
lb
))
1
0
))
(
if
cua--virtual-edges-debug
?.
?\s
))
'face
(
or
(
get-text-property
(
1-
s
)
'face
)
'default
)))
'face
(
or
(
get-text-property
(
max
(
1-
s
)
(
point-min
)
)
'face
)
'default
)))
(
if
(
/=
pl
le
)
(
setq
s
(
1-
s
))))
(
cond
...
...
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