diff options
author | nicm <nicm> | 2017-08-16 11:46:08 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-08-16 11:46:08 +0000 |
commit | c1ec28a34bea8759481308425d7918721ef62a94 (patch) | |
tree | a5dae9ea676275bf3b64c30add3b3411398f1898 /tmux.h | |
parent | ac2ba0961babe8307b6474a73ea11b097b42f759 (diff) | |
download | rtmux-c1ec28a34bea8759481308425d7918721ef62a94.tar.gz rtmux-c1ec28a34bea8759481308425d7918721ef62a94.tar.bz2 rtmux-c1ec28a34bea8759481308425d7918721ef62a94.zip |
Rename BELL_* values to ALERT_* now they are used by more than bells,
based on a diff from Brad Town.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -77,11 +77,11 @@ struct tmuxproc; #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0])) #endif -/* Bell option values. */ -#define BELL_NONE 0 -#define BELL_ANY 1 -#define BELL_CURRENT 2 -#define BELL_OTHER 3 +/* Alert option values. */ +#define ALERT_NONE 0 +#define ALERT_ANY 1 +#define ALERT_CURRENT 2 +#define ALERT_OTHER 3 /* Visual option values. */ #define VISUAL_OFF 0 |