Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Nov 5, 2017
1 parent 7119c04 commit c762f61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions kitty/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ screen_align(Screen *self) {

// Graphics {{{

void screen_alignment_display(Screen *self) {
void
screen_alignment_display(Screen *self) {
// http://www.vt100.net/docs/vt510-rm/DECALN.html
screen_cursor_position(self, 1, 1);
self->margin_top = 0; self->margin_bottom = self->lines - 1;
Expand All @@ -333,7 +334,8 @@ void screen_alignment_display(Screen *self) {
}
}

void select_graphic_rendition(Screen *self, unsigned int *params, unsigned int count) {
void
select_graphic_rendition(Screen *self, unsigned int *params, unsigned int count) {
#define SET_COLOR(which) \
if (i < count) { \
attr = params[i++];\
Expand Down

0 comments on commit c762f61

Please sign in to comment.