Minor reformat

This commit is contained in:
Arun Prakash Jana 2020-08-16 06:54:47 +05:30
parent a85467d462
commit d86810a425
No known key found for this signature in database
GPG key ID: A75979F35C080412
4 changed files with 8 additions and 9 deletions

View file

@ -19,7 +19,7 @@ O_NOMOUSE := 0 # no mouse support
O_NOBATCH := 0 # no built-in batch renamer O_NOBATCH := 0 # no built-in batch renamer
O_NOFIFO := 0 # no FIFO previewer support O_NOFIFO := 0 # no FIFO previewer support
O_CTX8 := 0 # enable 8 contexts O_CTX8 := 0 # enable 8 contexts
O_ICONS := 0 # support icons O_ICONS := 0 # support icons
# convert targets to flags for backwards compatibility # convert targets to flags for backwards compatibility
ifneq ($(filter debug,$(MAKECMDGOALS)),) ifneq ($(filter debug,$(MAKECMDGOALS)),)

View file

@ -17,7 +17,7 @@ O_NOMOUSE := 0 # no mouse support
O_NOBATCH := 0 # no built-in batch renamer O_NOBATCH := 0 # no built-in batch renamer
O_NOFIFO := 0 # no FIFO previewer support O_NOFIFO := 0 # no FIFO previewer support
O_CTX8 := 0 # enable 8 contexts O_CTX8 := 0 # enable 8 contexts
O_ICONS := 0 # support icons O_ICONS := 0 # support icons
# convert targets to flags for backwards compatibility # convert targets to flags for backwards compatibility
ifneq ($(filter debug,$(MAKECMDGOALS)),) ifneq ($(filter debug,$(MAKECMDGOALS)),)

View file

@ -3,7 +3,7 @@
struct icon_pair { struct icon_pair {
const char *match; const char *match;
const char *icon; const char *icon;
const unsigned char color; const unsigned char color; /* Hex xterm 256 color code, 0 to follow file specific */
}; };
/* /*

View file

@ -3482,10 +3482,9 @@ static const char *get_icon(const struct entry *ent){
i = 27; /* OTHER */ i = 27; /* OTHER */
for (j = icon_positions[i]; j < sizeof(icons_ext)/sizeof(struct icon_pair) && for (j = icon_positions[i]; j < sizeof(icons_ext)/sizeof(struct icon_pair) &&
icons_ext[j].match[0] == icons_ext[icon_positions[i]].match[0]; ++j) { icons_ext[j].match[0] == icons_ext[icon_positions[i]].match[0]; ++j)
if (strcasecmp(tmp, icons_ext[j].match) == 0) if (strcasecmp(tmp, icons_ext[j].match) == 0)
return icons_ext[j].icon; return icons_ext[j].icon;
}
return file_icon.icon; return file_icon.icon;
} }