diff options
author | Kalle Wallin <kaw@linux.se> | 2004-07-13 15:28:43 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-07-13 15:28:43 +0000 |
commit | f674c3f262a6bf2542debd29c4aa61281a976cbc (patch) | |
tree | 54226e05acccdf1bad118b4dadde4c4d4f8b7e10 /src/ncmpc.h | |
parent | 2c6af7312cf617f40ab407323fd07a9fa5579495 (diff) | |
download | mpd-f674c3f262a6bf2542debd29c4aa61281a976cbc.tar.gz mpd-f674c3f262a6bf2542debd29c4aa61281a976cbc.tar.xz mpd-f674c3f262a6bf2542debd29c4aa61281a976cbc.zip |
Use my_wgetch() instead of wgetch(), added --[no-]mouse option
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1864 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r-- | src/ncmpc.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/ncmpc.h b/src/ncmpc.h index dec530dc2..7c1d51958 100644 --- a/src/ncmpc.h +++ b/src/ncmpc.h @@ -40,16 +40,12 @@ void D(char *format, ...); /* song format - list window */ #define DEFAULT_LIST_FORMAT "%name%|[%artist% - ]%title%|%shortfile%" -#define LIST_FORMAT (options.list_format ? options.list_format : DEFAULT_LIST_FORMAT) +#define LIST_FORMAT (options.list_format ? options.list_format : \ + DEFAULT_LIST_FORMAT) /* song format - status window */ #define DEFAULT_STATUS_FORMAT "[%artist% - ]%title%|%shortfile%" -#define STATUS_FORMAT (options.status_format ? options.status_format : DEFAULT_STATUS_FORMAT) - -/* sigstop key (Ctrl-Z) */ -#define KEY_SIGSTOP 26 - -/* send SIGSTOP */ -void sigstop(void); +#define STATUS_FORMAT (options.status_format ? options.status_format : \ + DEFAULT_STATUS_FORMAT) #endif /* NCMPC_H */ |