Skip to content

Commit

Permalink
Remove some stuff that accidentally ended up here from portable, and
Browse files Browse the repository at this point in the history
remove a little-used debug function.
  • Loading branch information
nicm committed May 8, 2015
1 parent d174b9c commit 879de25
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 24 deletions.
29 changes: 10 additions & 19 deletions grid.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,16 @@ const struct grid_cell grid_default_cell = { 0, 0, 8, 8, (1 << 4) | 1, " " };

int grid_check_y(struct grid *, u_int);

#ifdef DEBUG
int
grid_check_y(struct grid *gd, u_int py)
{
if ((py) >= (gd)->hsize + (gd)->sy)
log_fatalx("y out of range: %u", py);
return (0);
}
#else
void grid_reflow_join(struct grid *, u_int *, struct grid_line *, u_int);
void grid_reflow_split(struct grid *, u_int *, struct grid_line *, u_int,
u_int);
void grid_reflow_move(struct grid *, u_int *, struct grid_line *);
size_t grid_string_cells_fg(const struct grid_cell *, int *);
size_t grid_string_cells_bg(const struct grid_cell *, int *);
void grid_string_cells_code(const struct grid_cell *,
const struct grid_cell *, char *, size_t, int);

/* Check grid y position. */
int
grid_check_y(struct grid *gd, u_int py)
{
Expand All @@ -67,16 +68,6 @@ grid_check_y(struct grid *gd, u_int py)
}
return (0);
}
#endif

void grid_reflow_join(struct grid *, u_int *, struct grid_line *, u_int);
void grid_reflow_split(struct grid *, u_int *, struct grid_line *, u_int,
u_int);
void grid_reflow_move(struct grid *, u_int *, struct grid_line *);
size_t grid_string_cells_fg(const struct grid_cell *, int *);
size_t grid_string_cells_bg(const struct grid_cell *, int *);
void grid_string_cells_code(const struct grid_cell *,
const struct grid_cell *, char *, size_t, int);

/* Create a new grid. */
struct grid *
Expand Down
5 changes: 0 additions & 5 deletions server-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1178,11 +1178,6 @@ server_client_msg_identify(struct client *c, struct imsg *imsg)
return;
c->flags |= CLIENT_IDENTIFIED;

#ifdef __CYGWIN__
c->fd = open(c->ttyname, O_RDWR|O_NOCTTY);
c->cwd = open(".", O_RDONLY);
#endif

if (c->flags & CLIENT_CONTROL) {
c->stdin_callback = control_callback;

Expand Down

0 comments on commit 879de25

Please sign in to comment.