summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/indexformat.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/indexformat.go b/lib/indexformat.go
index 8a329db..9e7a805 100644
--- a/lib/indexformat.go
+++ b/lib/indexformat.go
@@ -177,10 +177,12 @@ func ParseIndexFormat(conf *config.AercConfig, number int,
 					readFlag = "N" // message is new
 				} else if flag == imap.AnsweredFlag {
 					readFlag = "r" // message has been replied to
-				} else if flag == imap.DeletedFlag {
+				}
+				if flag == imap.DeletedFlag {
 					delFlag = "D"
 					// TODO: check if attachments
-				} else if flag == imap.FlaggedFlag {
+				}
+				if flag == imap.FlaggedFlag {
 					flaggedFlag = "!"
 				}
 				// TODO: check gpg stuff
> 2006-08-16 12:36:32 +0200 applied another config.mk patch made by sander' href='/acidbong/suckless/dwm/commit/config.mk?h=5.7.2&id=14f7380308c4213aac7956c272dec0d23c2f42d3'>14f7380 ^
7b5638f ^
1076f2b
7b5638f ^
ecc95c9 ^
b896b58 ^
1dcb18c ^

d7e1708 ^
71fd06f ^




95766d6 ^
1076f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
             
             


                                    

                   




                               
                   
                                     
                                       
 
       
                                             
                    

                                                                          
 




                                                
                     
       
# dwm version
VERSION = 4.7

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = -s ${LIBS}
#CFLAGS = -g -std=c99 -pedantic -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc