Results 40 comments of Daniel Nagy

Thank you @longlene for the investigation. >The key issue is that `raylib` use both struct and pointer to the same struct at the same time, some API can not work...

I was investigating this a bit more and found the following. When I create a test file `raylib-test.c` like so: ```c typedef struct Vector3 { float x; float y; float...

> The UpdateCamera function need a pointer to a Camera struct and will modify the struct, > the SetCameraMode require a Camera struct as parameter, > ... > please correct...

> I've given up on cl-autowrap for what it's worth. It's very buggy and does not look like it's maintained anymore. I have come to some of its limits also...

While investigating this more I found another odd case: When the indentation character of the sublist entry consist of a multiple of `markdown-list-indent-width` , then the bullet point of that...

Should be fixed with #115

> that (gethash 1 ht) should be different from (gethash "1" ht) You are right, I will think of a different approach.

To my surprise, that distinction between numbers and strings is already happening correctly. I have split the commit into two and added some more test and wrote some reasoning into...

A very crude fix for this: https://github.com/nagy/jscl/commit/5b3f1fe363b2b8c8b4bc6c40aa250824847bb60a

I cannot answer the code-generation question, but according to MDN, `Math.sqrt` can return `NaN` sometimes: ``` Return value The square root of the given number. If the number is negative,...