summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-30 19:21:40 -0400
committerJune McEnroe <june@causal.agency>2018-07-30 19:21:40 -0400
commit3252a0da1d00cfebd0088f8fc453e30ee4860d73 (patch)
tree9ef042735c097792ebd6e165a9ed16c8b4025df8 /bin
parentAdd gfx README and LICENSE (diff)
downloadsrc-3252a0da1d00cfebd0088f8fc453e30ee4860d73.tar.gz
src-3252a0da1d00cfebd0088f8fc453e30ee4860d73.zip
Rename linux function in scheme
The token 'linux' is #defined. Dumb.
Diffstat (limited to '')
-rw-r--r--bin/scheme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index e50ea892..ba05f14e 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -125,7 +125,7 @@ static void hex(const struct Hsv *hsv, size_t len) {
 	}
 }
 
-static void linux(const struct Hsv *hsv, size_t len) {
+static void console(const struct Hsv *hsv, size_t len) {
 	if (len > 16) len = 16;
 	for (size_t i = 0; i < len; ++i) {
 		struct Rgb rgb = toRgb(hsv[i]);
@@ -207,7 +207,7 @@ int main(int argc, char *argv[]) {
 			break; case 'a': gen = ansi;
 			break; case 'g': out = png;
 			break; case 'h': out = hsv;
-			break; case 'l': out = linux;
+			break; case 'l': out = console;
 			break; case 't': gen = terminal;
 			break; case 'x': out = hex;
 			break; default: return EX_USAGE;
rc/commit/bin/htagml.c?id=822f710ade459954384d9f6980c156b73c5ad198&follow=1'>Prefer tag matches not preceded by [[:alnum:]]June McEnroe Otherwise the "id" in "void" matches for "void id". 2021-01-19Escape \ and / in mtags search patternsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe