Skip to content

cdecl-11.1

Compare
Choose a tag to compare
@paul-j-lucas paul-j-lucas released this 01 Oct 02:50
· 4495 commits to master since this release

Multiple declarations
The declare command can now accept multiple names like:

cdecl> declare p, q as pointer to int
int *p, *q;

Digraph & Trigraph output
Digraphs and trigraphs are no longer emitted in a language in which they aren't supported.

Help options
The help command now also acceptions options. Help for options is now printed separately.

Help autocompletion
Help options are now autocompletable.

Fixed multiple nested declarations crash
Explaining a declaration like:

explain int (*p), (*q)

is now fixed.