aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-07-05 09:38:19 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-07-05 09:38:19 +0530
commit7b6e3c261d1896f275ca4cbb773595fba671ea5e (patch)
tree9aa625852a4e747768f59db21e524ca805ee6132 /nnn.c
parent9a4c4467600d02a445b5055d3278052b93395970 (diff)
downloadnnn-7b6e3c261d1896f275ca4cbb773595fba671ea5e.tar.gz
Change single-line 0-arg APIs to macros
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c33
1 files changed, 11 insertions, 22 deletions
diff --git a/nnn.c b/nnn.c
index 394ead4..7a82904 100644
--- a/nnn.c
+++ b/nnn.c
@@ -119,6 +119,10 @@ disabledbg()
#define F_SIGINT 0x08 /* restore default SIGINT handler */
#define F_NORMAL 0x80 /* spawn child process in non-curses regular mode */
+#define exitcurses() endwin()
+#define clearprompt() printmsg("")
+#define printwarn() printmsg(strerror(errno))
+
typedef unsigned long ulong;
typedef unsigned int uint;
typedef unsigned char uchar;
@@ -222,7 +226,6 @@ static char *STR_NOHOME = "HOME not set";
/* Forward declarations */
static void printmsg(char *);
-static void printwarn(void);
static void printerr(int, char *);
static void redraw(char *path);
@@ -489,7 +492,7 @@ spawn(char *file, char *arg1, char *arg2, char *dir, uchar flag)
int status;
if (flag & F_NORMAL)
- endwin();
+ exitcurses();
pid = fork();
if (pid == 0) {
@@ -704,29 +707,15 @@ printmsg(char *msg)
mvprintw(LINES - 1, 0, "%s\n", msg);
}
-/* Display warning as a message */
-static void
-printwarn(void)
-{
- printmsg(strerror(errno));
-}
-
/* Kill curses and display error before exiting */
static void
printerr(int ret, char *prefix)
{
- endwin();
+ exitcurses();
fprintf(stderr, "%s: %s\n", prefix, strerror(errno));
exit(ret);
}
-/* Clear the last line */
-static void
-clearprompt(void)
-{
- printmsg("");
-}
-
/* Print prompt on the last line */
static void
printprompt(char *str)
@@ -1428,7 +1417,7 @@ show_stats(char *fpath, char *fname, struct stat *sb)
close(fd);
- endwin();
+ exitcurses();
get_output(NULL, 0, "cat", tmp, NULL, 1);
unlink(tmp);
initcurses();
@@ -1441,7 +1430,7 @@ show_mediainfo(char *fpath, char *arg)
if (!get_output(g_buf, MAX_CMD_LEN, "which", metaviewer, NULL, 0))
return -1;
- endwin();
+ exitcurses();
get_output(NULL, 0, metaviewer, fpath, arg, 1);
initcurses();
return 0;
@@ -1521,7 +1510,7 @@ Home, g, ^, ^A | Jump to first entry\n\
dprintf(fd, "\n");
close(fd);
- endwin();
+ exitcurses();
get_output(NULL, 0, "cat", tmp, NULL, 1);
unlink(tmp);
initcurses();
@@ -2071,7 +2060,7 @@ nochange:
goto nochange;
}
- endwin();
+ exitcurses();
tmp = readline("chdir: ");
initcurses();
@@ -2572,7 +2561,7 @@ main(int argc, char *argv[])
#endif
initcurses();
browse(ipath, ifilter);
- endwin();
+ exitcurses();
#ifdef DEBUGMODE
disabledbg();
#endif