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
b0d15b4f
Commit
b0d15b4f
authored
Nov 20, 2011
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
parent
f5a96a4f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/window.c
src/window.c
+1
-1
No files found.
src/ChangeLog
View file @
b0d15b4f
2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
* window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
2011-11-20 Juanma Barranquero <lekktu@gmail.com>
* nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
...
...
src/window.c
View file @
b0d15b4f
...
...
@@ -5783,7 +5783,7 @@ get_phys_cursor_glyph (struct window *w)
if
(
!
row
->
enabled_p
)
return
NULL
;
if
(
w
->
hscroll
)
if
(
XINT
(
w
->
hscroll
)
)
{
/* When the window is hscrolled, cursor hpos can legitimately be
out of bounds, but we draw the cursor at the corresponding
...
...
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