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
04cb6840
Commit
04cb6840
authored
Mar 05, 2011
by
Chong Yidong
Browse files
* nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
parent
abec5126
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/nsterm.m
src/nsterm.m
+1
-2
No files found.
src/ChangeLog
View file @
04cb6840
2011-03-05 Chong Yidong <cyd@stupidchicken.com>
* nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
2011-03-02 Ken Brown <kbrown@cornell.edu>
* sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
src/nsterm.m
View file @
04cb6840
...
...
@@ -2283,8 +2283,7 @@ Note that CURSOR_WIDTH is meaningful only for (h)bar cursors.
if (cursor_type == BAR_CURSOR || cursor_type == HBAR_CURSOR)
{
if (cursor_width < 0)
cursor_width = FRAME_CURSOR_WIDTH (f);
cursor_width = min (cursor_width, 1);
cursor_width = max (FRAME_CURSOR_WIDTH (f), 1);
w->phys_cursor_width = cursor_width;
}
...
...
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