Alberto González Palomo
Alberto González Palomo
Hi, this combination might be out of scope but I can spend some time helping diagnose it. Compiling in Windows 10, the program runs fine under PowerShell and CMD.EXE, but...
Not all characters are corrected: in particular, the box drawing characters would be interesting to have. Would it be better to add the FontForge `.sfd` file and work on it...
This leaves only one warning: ``` /usr/bin/ld: liblua.a(loslib.o): in function `os_tmpname': loslib.c:(.text+0x4e4): warning: the use of `tmpnam' is dangerous, better use `mkstemp' ``` There is a note about this in...
It compiles and runs fine, this is just some warnings with GCC 10.2.1 20201203 on Linux ppc64le. I’m preparing a pull request. ``` $ make cc -O2 -Wall -W -Ilua/src...
Hi, just testing it on Linux ppc64le (IBM PowerPC 64-bit Little-Endian) with an **old graphics card** and I get this error message, which **has probably more to do with wgpu-rs**...
There is a line at the beginning that seems unnecessary to me: `(require 'cl-lib)` I’ve removed it locally and everything still works. Asking Emacs for a description with `M-x describe-package...
This is just a simple read-eval-print loop without hot reloading or stack trace manipulation: I just noticed #8 but decided to submit this anyway because it is already useful for...
Hi, I’m trying to understand the types used in `btree.c` and do not see what the purpose of this cast is, in line 498: https://github.com/tidwall/btree.c/blob/9dbe6334730da5621d6bf17e4a34708bab16ffe3/btree.c#L498 It appears again at the...
The re-aligned line `646`: ```c - struct btree_node *left = node->children[i]; + struct btree_node *left = node->children[i]; struct btree_node *right = node->children[i+1]; ``` This is merely cosmetic. I have my...