aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dbg.h2
-rw-r--r--src/nnn.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/dbg.h b/src/dbg.h
index 97d49ab..3cb0b2b 100644
--- a/src/dbg.h
+++ b/src/dbg.h
@@ -79,7 +79,7 @@ static void disabledbg(void)
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
-#define DPRINTF_D(x) xprintf(DEBUG_FD, "ln " TOSTRING(__LINE__) ": " #x "=%d\n", x, __LINE__)
+#define DPRINTF_D(x) xprintf(DEBUG_FD, "ln " TOSTRING(__LINE__) ": " #x "=%d\n", x)
#define DPRINTF_U(x) xprintf(DEBUG_FD, "ln " TOSTRING(__LINE__) ": " #x "=%u\n", x)
#define DPRINTF_S(x) xprintf(DEBUG_FD, "ln " TOSTRING(__LINE__) ": " #x "=%s\n", x)
#define DPRINTF_P(x) xprintf(DEBUG_FD, "ln " TOSTRING(__LINE__) ": " #x "=%p\n", x)
diff --git a/src/nnn.c b/src/nnn.c
index 699951b..d2a1b54 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -129,6 +129,7 @@
#define READLINE_MAX 128
#define FILTER '/'
#define RFILTER '\\'
+#define CASE ':'
#define MSGWAIT '$'
#define REGEX_MAX 48
#define BM_MAX 10
@@ -2011,7 +2012,7 @@ static void showfilterinfo(void)
{
char info[REGEX_MAX];
- snprintf(info, REGEX_MAX - 1, " %s [/\\], %s [|]",
+ snprintf(info, REGEX_MAX - 1, " %s [/\\], %s [:]",
(cfg.regex ? "regex" : "str"),
((fnstrstr == &strcasestr) ? "ic" : "noic"));
printinfoln(info);
@@ -2167,7 +2168,7 @@ static int filterentries(char *path, char *lastname)
}
/* Toggle case-sensitivity */
- if (*ch == '|') {
+ if (*ch == CASE) {
fnstrstr = (fnstrstr == &strcasestr) ? &strstr : &strcasestr;
regflags ^= REG_ICASE;
showfilter(ln);