aboutsummaryrefslogtreecommitdiffstats
path: root/src/ncmpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ncmpc.h')
-rw-r--r--src/ncmpc.h12
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 */