mirror of
https://github.com/tmux/tmux.git
synced 2024-11-10 13:48:48 +00:00
Whitespace and more syncing.
This commit is contained in:
parent
8df98d1f5b
commit
bb459beb03
@ -1,4 +1,4 @@
|
||||
/* $Id: cmd-attach-session.c,v 1.25 2009-05-04 17:58:26 nicm Exp $ */
|
||||
/* $Id: cmd-attach-session.c,v 1.26 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -77,4 +77,3 @@ cmd_attach_session_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: cmd-list-clients.c,v 1.15 2009-05-19 16:29:35 nicm Exp $ */
|
||||
/* $Id: cmd-list-clients.c,v 1.16 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: cmd-select-layout.c,v 1.2 2009-05-18 21:32:36 nicm Exp $ */
|
||||
/* $Id: cmd-select-layout.c,v 1.3 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: grid-view.c,v 1.13 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -133,7 +133,7 @@ grid_view_insert_lines(struct grid *gd, u_int py, u_int ny)
|
||||
/* Insert lines in region. */
|
||||
void
|
||||
grid_view_insert_lines_region(
|
||||
struct grid *gd, u_int rupper, u_int rlower, u_int py, u_int ny)
|
||||
struct grid *gd, unused u_int rupper, u_int rlower, u_int py, u_int ny)
|
||||
{
|
||||
GRID_DEBUG(
|
||||
gd, "rupper=%u, rlower=%u, py=%u, ny=%u", rupper, rlower, py, ny);
|
||||
@ -163,7 +163,7 @@ grid_view_delete_lines(struct grid *gd, u_int py, u_int ny)
|
||||
/* Delete lines inside scroll region. */
|
||||
void
|
||||
grid_view_delete_lines_region(
|
||||
struct grid *gd, u_int rupper, u_int rlower, u_int py, u_int ny)
|
||||
struct grid *gd, unused u_int rupper, u_int rlower, u_int py, u_int ny)
|
||||
{
|
||||
GRID_DEBUG(
|
||||
gd, "rupper=%u, rlower=%u, py=%u, ny=%u", rupper, rlower, py, ny);
|
||||
|
4
grid.c
4
grid.c
@ -1,4 +1,4 @@
|
||||
/* $Id: grid.c,v 1.20 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id: grid.c,v 1.21 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -517,5 +517,3 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx)
|
||||
buf[off] = '\0';
|
||||
return (buf);
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: screen-write.c,v 1.51 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
14
server.c
14
server.c
@ -1,4 +1,4 @@
|
||||
/* $Id: server.c,v 1.148 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id: server.c,v 1.149 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -131,7 +131,7 @@ server_client_index(struct client *c)
|
||||
int
|
||||
server_start(char *path)
|
||||
{
|
||||
int retcode, pair[2], srv_fd;
|
||||
int pair[2], srv_fd;
|
||||
char *cause;
|
||||
#ifdef HAVE_SETPROCTITLE
|
||||
char rpathbuf[MAXPATHLEN];
|
||||
@ -152,10 +152,6 @@ server_start(char *path)
|
||||
}
|
||||
close(pair[0]);
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_clear();
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Must daemonise before loading configuration as the PID changes so
|
||||
* $TMUX would be wrong for sessions created in the config file.
|
||||
@ -194,11 +190,7 @@ server_start(char *path)
|
||||
srv_fd = server_create_socket();
|
||||
server_create_client(pair[1]);
|
||||
|
||||
retcode = server_main(srv_fd);
|
||||
#ifdef DEBUG
|
||||
xmalloc_report(getpid(), "server");
|
||||
#endif
|
||||
exit(retcode);
|
||||
exit(server_main(srv_fd));
|
||||
}
|
||||
|
||||
/* Create server socket. */
|
||||
|
2
status.c
2
status.c
@ -1,4 +1,4 @@
|
||||
/* $Id: status.c,v 1.87 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id: status.c,v 1.88 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
5
tmux.c
5
tmux.c
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.c,v 1.134 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id: tmux.c,v 1.135 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -504,8 +504,5 @@ out:
|
||||
buffer_destroy(cctx.srv_in);
|
||||
buffer_destroy(cctx.srv_out);
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_report(getpid(), "client");
|
||||
#endif
|
||||
return (retcode);
|
||||
}
|
||||
|
4
tmux.h
4
tmux.h
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.h,v 1.341 2009-06-25 16:25:15 nicm Exp $ */
|
||||
/* $Id: tmux.h,v 1.342 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -1684,4 +1684,4 @@ int printflike3 printpath(char *, size_t, const char *, ...);
|
||||
char *xdirname(const char *);
|
||||
char *xbasename(const char *);
|
||||
|
||||
#endif
|
||||
#endif /* TMUX_H */
|
||||
|
@ -1,8 +1,8 @@
|
||||
# $Id: fix-ids.sh,v 1.1 2009-06-25 16:21:32 nicm Exp $
|
||||
# $Id: fix-ids.sh,v 1.2 2009-06-25 16:34:50 nicm Exp $
|
||||
|
||||
for i in *.[ch] tmux.1; do
|
||||
(head -1 $i|grep '$OpenBSD' >/dev/null) || continue
|
||||
mv $i $i~ || exit
|
||||
sed 's/\$OpenBSD.* \$/$Id: fix-ids.sh,v 1.1 2009-06-25 16:21:32 nicm Exp $/' $i~ >$i || exit
|
||||
sed 's/\$OpenBSD.* \$/$\Id $/' $i~ >$i || exit
|
||||
echo $i
|
||||
done
|
||||
|
2
tty.c
2
tty.c
@ -1,4 +1,4 @@
|
||||
/* $Id: tty.c,v 1.106 2009-06-25 16:21:32 nicm Exp $ */
|
||||
/* $Id: tty.c,v 1.107 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
|
18
xmalloc.c
18
xmalloc.c
@ -1,4 +1,4 @@
|
||||
/* $Id: xmalloc.c,v 1.8 2009-01-29 19:24:34 nicm Exp $ */
|
||||
/* $Id: xmalloc.c,v 1.9 2009-06-25 16:34:50 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2004 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -50,9 +50,6 @@ xcalloc(size_t nmemb, size_t size)
|
||||
if ((ptr = calloc(nmemb, size)) == NULL)
|
||||
fatal("xcalloc failed");
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_new(xmalloc_caller(), ptr, nmemb * size);
|
||||
#endif
|
||||
return (ptr);
|
||||
}
|
||||
|
||||
@ -66,9 +63,6 @@ xmalloc(size_t size)
|
||||
if ((ptr = malloc(size)) == NULL)
|
||||
fatal("xmalloc failed");
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_new(xmalloc_caller(), ptr, size);
|
||||
#endif
|
||||
return (ptr);
|
||||
}
|
||||
|
||||
@ -85,9 +79,6 @@ xrealloc(void *oldptr, size_t nmemb, size_t size)
|
||||
if ((newptr = realloc(oldptr, newsize)) == NULL)
|
||||
fatal("xrealloc failed");
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_change(xmalloc_caller(), oldptr, newptr, nmemb * size);
|
||||
#endif
|
||||
return (newptr);
|
||||
}
|
||||
|
||||
@ -97,10 +88,6 @@ xfree(void *ptr)
|
||||
if (ptr == NULL)
|
||||
fatalx("null pointer");
|
||||
free(ptr);
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_free(ptr);
|
||||
#endif
|
||||
}
|
||||
|
||||
int printflike2
|
||||
@ -125,9 +112,6 @@ xvasprintf(char **ret, const char *fmt, va_list ap)
|
||||
if (i < 0 || *ret == NULL)
|
||||
fatal("xvasprintf failed");
|
||||
|
||||
#ifdef DEBUG
|
||||
xmalloc_new(xmalloc_caller(), *ret, i + 1);
|
||||
#endif
|
||||
return (i);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user