summaryrefslogtreecommitdiffstats
path: root/smenu.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2021-03-20 14:39:42 +0100
committerpgen <p.gen.progs@gmail.com>2021-03-20 15:14:54 +0100
commit04f28493dae67a9cfc0a970ee8b291ab121e1c86 (patch)
tree1278c06480fae8ec06cb2a802b5221ace6108870 /smenu.h
parent9fff807c8835fb89b4757c8a063f350f85054353 (diff)
Allow 4 more special levels (-1, -2, ..., -9)
Diffstat (limited to 'smenu.h')
-rw-r--r--smenu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smenu.h b/smenu.h
index 7780bba..05a460c 100644
--- a/smenu.h
+++ b/smenu.h
@@ -265,7 +265,7 @@ struct word_s
size_t mb; /* number of UTF-8 glyphs to display */
long tag_order; /* each time a word is tagged, this value *
* is increased */
- size_t special_level; /* can vary from 0 to 5; 0 meaning normal */
+ size_t special_level; /* can vary from 0 to 9; 0 meaning normal */
char * str; /* display string associated with this word */
size_t len; /* number of bytes of str (for trimming) */
char * orig; /* NULL or original string if is had been *
@@ -327,7 +327,7 @@ struct win_s
attrib_t exclude_attr; /* non-selectable words attributes */
attrib_t tag_attr; /* non-selectable words attributes */
attrib_t daccess_attr; /* direct access tag attributes */
- attrib_t special_attr[5]; /* special (-1,...) words attributes */
+ attrib_t special_attr[9]; /* special (-1,...) words attributes */
};
/* Sed like node structure */