mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Only worry about complete seconds for status line update. Also reduce poll interval and de-magic-number it.
This commit is contained in:
5
tmux.h
5
tmux.h
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.h,v 1.309 2009-04-30 21:17:06 nicm Exp $ */
|
||||
/* $Id: tmux.h,v 1.310 2009-05-02 08:34:39 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -127,6 +127,9 @@ extern const char *__progname;
|
||||
/* Escape timer period, in milliseconds. */
|
||||
#define ESCAPE_PERIOD 250
|
||||
|
||||
/* Maximum poll timeout (when attached). */
|
||||
#define POLL_TIMEOUT 50
|
||||
|
||||
/* Fatal errors. */
|
||||
#define fatal(msg) log_fatal("%s: %s", __func__, msg);
|
||||
#define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
|
||||
|
Reference in New Issue
Block a user