Rename BELL_* values to ALERT_* now they are used by more than bells,

based on a diff from Brad Town.
This commit is contained in:
nicm
2017-08-16 11:46:08 +00:00
parent ac2ba0961b
commit c1ec28a34b
3 changed files with 15 additions and 15 deletions

10
tmux.h
View File

@ -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