diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-17 14:41:17 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-06-17 14:41:17 -0700 |
commit | cf49e537014c3cb5aaee07e57400933e0bb72b6b (patch) | |
tree | e7b4fb52ba382a4609b7fcd596059b3432b264ec /src/Cursor.c | |
parent | f76fd81dfbbd5cfae75c87ce0511e88e08529cf3 (diff) |
Strip whitespace from end of lines in source files
Diffstat (limited to 'src/Cursor.c')
-rw-r--r-- | src/Cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Cursor.c b/src/Cursor.c index 76ac3be7..4bacfc97 100644 --- a/src/Cursor.c +++ b/src/Cursor.c @@ -37,7 +37,7 @@ Cursor XCreateFontCursor( Display *dpy, unsigned int which) { - /* + /* * the cursor font contains the shape glyph followed by the mask * glyph; so character position 0 contains a shape, 1 the mask for 0, * 2 a shape, etc. <X11/cursorfont.h> contains hash define names @@ -49,7 +49,7 @@ Cursor XCreateFontCursor( if (dpy->cursor_font == None) return None; } - return XCreateGlyphCursor (dpy, dpy->cursor_font, dpy->cursor_font, + return XCreateGlyphCursor (dpy, dpy->cursor_font, dpy->cursor_font, which, which + 1, &foreground, &background); } |