aboutsummaryrefslogtreecommitdiffstats
path: root/nnn.c
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-08-24 10:16:35 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2017-08-24 10:16:35 +0530
commit7275d68ab7c583b6f9bd31543dcf8a11d08acad4 (patch)
treed894f0f71ebd7f27088e4d0188d3c7f528891c30 /nnn.c
parent7c52e4a89e8663daec136b7af7c27c5173f33274 (diff)
downloadnnn-7275d68ab7c583b6f9bd31543dcf8a11d08acad4.tar.gz
Rename MAX_BM to BM_MAX
Diffstat (limited to 'nnn.c')
-rw-r--r--nnn.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nnn.c b/nnn.c
index c759847..2935917 100644
--- a/nnn.c
+++ b/nnn.c
@@ -116,7 +116,7 @@ disabledbg()
#define CURSYM(flag) (flag ? CURSR : EMPTY)
#define FILTER '/'
#define REGEX_MAX 128
-#define MAX_BM 10
+#define BM_MAX 10
/* Macros to define process spawn behaviour as flags */
#define F_NONE 0x00 /* no flag set */
@@ -198,7 +198,7 @@ static blkcnt_t dir_blocks;
static ulong num_files;
static size_t fs_free;
static uint open_max;
-static bm bookmark[MAX_BM];
+static bm bookmark[BM_MAX];
static const double div_2_pow_10 = 1.0 / 1024.0;
static uint _WSHIFT = (sizeof(ulong) == 8) ? 3 : 2;
static uchar color = 4;
@@ -1118,7 +1118,7 @@ parsebmstr(char *bms)
{
int i = 0;
- while (*bms && i < MAX_BM) {
+ while (*bms && i < BM_MAX) {
bookmark[i].key = bms;
++bms;
@@ -1685,7 +1685,7 @@ show_help(char *path)
if (getenv("NNN_BMS")) {
dprintf(fd, "BOOKMARKS\n");
- for (; i < MAX_BM; ++i)
+ for (; i < BM_MAX; ++i)
if (bookmark[i].key)
dprintf(fd, " %s: %s\n",
bookmark[i].key, bookmark[i].loc);
@@ -2431,7 +2431,7 @@ nochange:
if (tmp == NULL)
break;
- for (r = 0; bookmark[r].key && r < MAX_BM; ++r) {
+ for (r = 0; bookmark[r].key && r < BM_MAX; ++r) {
if (xstrcmp(bookmark[r].key, tmp) == -1)
continue;