Foo Chuan Wei

Results 31 issues of Foo Chuan Wei

In https://mosml.org/mosmllib/, the links for the "MySQL" and "Graphics" structures are broken. * `https://mosml.org/mosmllib/MySQL.html` should be https://mosml.org/mosmllib/Mysql.html instead. * There is no HTML page for the `Graphics` structure. Related: #52

Compiling [mmysql.c](https://github.com/kfl/mosml/blob/ver-2.10.1/src/dynlibs/mmysql/mmysql.c) using mmysql's [Makefile](https://github.com/kfl/mosml/blob/ver-2.10.1/src/dynlibs/mmysql/Makefile) fails with this error: ``` mmysql.c: In function ‘dbresult_finalize’: mmysql.c:79:28: error: lvalue required as left operand of assignment DBresult_val(dbresval) = NULL; ^ mmysql.c:81:33: error: lvalue...

None of the [man pages](https://github.com/kfl/mosml/tree/ver-2.10.1/man) are installed by [src/Makefile](https://github.com/kfl/mosml/blob/ver-2.10.1/src/Makefile). Is that the intended behavior? [src/Makefile.inc](https://github.com/kfl/mosml/blob/ver-2.10.1/src/Makefile.inc#L18-L21) defines `MANDIR`, but it is not used elsewhere. https://github.com/kfl/mosml/blob/ee355b296f393a8a0bf9de9e8dbe8a5915c92ed6/src/Makefile.inc#L18-L21

In the README, the link to `http://packages.ubuntu.com/precise/ditaa` is broken. It's now `bionic` instead of `precise`.

Add support for [s-expression comments](https://docs.racket-lang.org/reference/reader.html?q=%23%3B#%28idx._%28gentag._66._%28lib._scribblings%2Freference%2Freference..scrbl%29%29%29). For example: ```racket #;(define (double x) (* 2 x)) ``` Currently, the second line is highlighted as code. It should be highlighted as a comment.

## Information **VIM version** VIM - Vi IMproved 8.1 Included patches: 1-2269, 3612, 3625, 3669, 3741 Operating System: Ubuntu 20.04 ## What went wrong The SML linters execute the contents...

bug

`sofu.md` contains a list of [system interaction libraries](https://github.com/ocaml-community/awesome-ocaml/blob/061f5579fe7e2197b37e6c82c07728d8e7da5ecc/sotu.md#system-interaction), but those libraries are missing from the main list.

https://github.com/slime/slime/blob/68c58c0194ff03cd147fcec99f0ee90ba9178875/lib/hyperspec.el#L41-L45 Shouldn't the example be `file:///usr/local/doc/HyperSpec/` (triple forward slash) instead? I am using SLIME 2.26.1 in Emacs 26.3 on Ubuntu 20.04. `file://usr/local/doc/HyperSpec/` (double forward slash) does find the page, both...

Description: when history wrapping is enabled (`(setq slime-repl-wrap-history t)`), pressing `M-n` (`slime-repl-next-input`) at a blank REPL line does not wrap around to show the oldest history. Instead, `M-n` needs to...

Steps to reproduce: 1. Start SLIME (`M-x slime`). 2. Evaluate a valid Lisp expression: `(+ 1 2)`. 3. Press `M-p` (`slime-repl-previous-input`) to get back `(+ 1 2)`. 4. Press `M-n`...