Katherine

Results 83 issues of Katherine

Hello! I added output to UTF-8 eight-dot braille characters. This uses a single dot per character from `pi->rows[i][j]`, and so does not distinguish point counts. Output looks like this: ```...

Hi! I _think_ the trigger input is unused when in XY mode. Looking at the source: https://github.com/VCVRack/Fundamental/blob/v2/src/Scope.cpp#L103-L106 ``` // Trigger immediately in Lissajous mode, or if trigger detection is disabled...

Hiya! I've been playing with using the scope in XY mode to display text, and I'm hitting against what I think is the hardcoded `BUFFER_SIZE` limit here: https://github.com/VCVRack/Fundamental/blob/v2/src/Scope.cpp#L5 Here's about...

`-mc` causes tdfc2 to print a marker indicating the current token in an error message. ``` ; ./obj.when-bootstrap/bin/tcc -Wc,-mc abc.c abc.c, line 1: Error: /!!!!/ hello [Syntax]: Parse error before...

feature enhancement
good first issue

This is an extension; it's needed for netbsd's headers.

feature enhancement

Reported by @data-man in #44 - I'm moving these here, because #44 is about a different issue: lexi: ``` ld: /home/TenDRA/lexi/obj/src/_partial/src/out/h.o:(.bss+0x0): multiple definition of `token_end'; /home/dataman/Projects/C/-Parsing/TenDRA/lexi/obj/src/_partial/src/out/c.o:(.bss+0x0): first defined here ld:...

bug
good first issue

_Value initialisation_ introduced in C++03 is the only feature difference over what we currently have for tendra's implementation (which is C++98). An overview here: https://en.cppreference.com/w/cpp/language/value_initialization

feature enhancement

Would be nice if we could have a smoother test for multilibs support, rather than failing during the build if the i386 libc headers are missing. e.g.: ``` /usr/include/stdlib.h, line...

feature enhancement

This exists in C++, but behaves slightly differently. The tspec API is already present for `stdbool.h` The tddc2 producer differences are probably best ported over from Stefan's work on the...

feature enhancement

```c int main(void) { switch (5) { static int x = 7; case 5: return x; } return 0; } ``` `Internal error: 'tag 1' used but not defined.`

bug