summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorCurtis McEnroe2018-12-05 14:46:34 -0500
committerCurtis McEnroe2018-12-05 14:46:34 -0500
commit2797ac8abfdfa3d89120b6781157eb8164406287 (patch)
treef626957c16686e43ea0108ee28f7f085a6afc922 /ui.c
parenta23f587be8a344a5f3834f9ff6a8b15e2c8dcbe2 (diff)
Rename verbose to raw
And change the format of the sticky tag names again.
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index a7bec55..9ffe8ad 100644
--- a/ui.c
+++ b/ui.c
@@ -509,13 +509,13 @@ static void keyChar(wchar_t ch) {
 }
 
 static bool isAction(struct Tag tag, const wchar_t *input) {
-	if (tag.id == TagStatus.id || tag.id == TagVerbose.id) return false;
+	if (tag.id == TagStatus.id || tag.id == TagRaw.id) return false;
 	return !wcsncasecmp(input, L"/me ", 4);
 }
 
 // FIXME: This duplicates logic from input.c for wcs.
 static bool isCommand(struct Tag tag, const wchar_t *input) {
-	if (tag.id == TagStatus.id || tag.id == TagVerbose.id) return true;
+	if (tag.id == TagStatus.id || tag.id == TagRaw.id) return true;
 	if (input[0] != L'/') return false;
 	const wchar_t *space = wcschr(&input[1], L' ');
 	const wchar_t *extra = wcschr(&input[1], L'/');