diff options
author | June McEnroe <june@causal.agency> | 2018-09-02 16:13:00 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-09-02 16:13:00 -0400 |
commit | 240f9ebf8445c6e9a569b40876db0681ffc8a1d0 (patch) | |
tree | 63dbb1ae562c3eec80d46d0eba85a8ea11086f85 /tab.c | |
parent | Add status indicators (diff) | |
download | catgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.tar.gz catgirl-240f9ebf8445c6e9a569b40876db0681ffc8a1d0.zip |
Use PascalCase for constants
Begone underscores.
Diffstat (limited to 'tab.c')
-rw-r--r-- | tab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tab.c b/tab.c index a242365..9a1e478 100644 --- a/tab.c +++ b/tab.c @@ -121,14 +121,14 @@ struct Tag tabTag(const char *word) { return entry->tag; } iter = NULL; - return TAG_NONE; + return TagNone; } const char *tabNext(struct Tag tag, const char *prefix) { size_t len = strlen(prefix); struct Entry *start = (iter ? iter->next : head); for (struct Entry *entry = start; entry; entry = entry->next) { - if (entry->tag.id != TAG_NONE.id && entry->tag.id != tag.id) continue; + if (entry->tag.id != TagNone.id && entry->tag.id != tag.id) continue; if (strncasecmp(entry->word, prefix, len)) continue; iter = entry; return entry->word; |