about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-07-20 15:17:52 +0200
committerarg@10ksloc.org <unknown>2006-07-20 15:17:52 +0200
commit2b5553b1ebf7c8e59b5ecf7128b932115ff2b313 (patch)
tree756e292c34b67d1a623226db09b2be75e6d76ec7 /dwm.h
parent4688ad181da14be36e034918580ec0ce5968ffdb (diff)
downloaddwm-2b5553b1ebf7c8e59b5ecf7128b932115ff2b313.tar.gz
cleaned the CUSTOMIZE flags
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h
index 1529d17..e72bca2 100644
--- a/dwm.h
+++ b/dwm.h
@@ -5,7 +5,7 @@
 
 #include <X11/Xlib.h>
 
-/********** CUSTOMIZE **********/
+/* CUSTOMIZE */
 
 #define FONT				"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
 #define BGCOLOR				"#0a2c2d"
@@ -23,7 +23,7 @@
 /* tags */
 enum { Tscratch, Tdev, Twww, Twork, TLast };
 
-/********** CUSTOMIZE **********/
+/* END CUSTOMIZE */
 
 typedef union Arg Arg;
 typedef struct Client Client;
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
                                                                     
 




               
                    
 




















                                                                                     
 





















                                                    
/*                         LEXICAL ANALYSOR (MAINLY FOR CONFIG FILES)

 */

#ifndef HTLEX_H
#define HTLEX_H

#include <HTUtils.h>

typedef enum {
    LEX_NONE,		/* Internally used      */
    LEX_EOF,		/* End of file          */
    LEX_REC_SEP,	/* Record separator     */
    LEX_FIELD_SEP,	/* Field separator      */
    LEX_ITEM_SEP,	/* List item separator  */
    LEX_OPEN_PAREN,	/* Group start tag      */
    LEX_CLOSE_PAREN,	/* Group end tag        */
    LEX_AT_SIGN,	/* Address qualifier    */
    LEX_ALPH_STR,	/* Alphanumeric string  */
    LEX_TMPL_STR	/* Template string      */
} LexItem;

extern char HTlex_buffer[];	/* Read lexical string          */
extern int HTlex_line;		/* Line number in source file   */

/*

Get Next Lexical Item

   If returns LEX_ALPH_STR or LEX_TMPL_STR the string is in global buffer lex_buffer.

 */

PUBLIC LexItem lex PARAMS((FILE * fp));
/*

Push Back Latest Item

 */

PUBLIC void unlex PARAMS((LexItem lex_item));
/*

Get the Name for Lexical Item

 */

PUBLIC char *lex_verbose PARAMS((LexItem lex_item));
/*

 */

#endif /* not HTLEX_H */