Commit Briefs

Sergey Bronnikov

man3: update history section (master)

These manual pages were not actually written by me.


Sergey Bronnikov

Release 0.1.3 (tags/0.1.3)


Sergey Bronnikov

man3: fix broken source code formatting



Sergey Bronnikov

changelog: fixed description in lua_close

The patch follows up commit 9525c139 ("man3: fix description in lua_close.3").


Sergey Bronnikov

man3: fix description in lua_close.3

`lua_close` [1] used description of `lua_checkstack` [2] by mistake. 1. https://www.lua.org/manual/5.1/manual.html#lua_close 1. https://www.lua.org/manual/5.1/manual.html#lua_checkstack



Sergey Bronnikov

ci: publish CSS


Sergey Bronnikov

ci: publish html table of contents


Sergey Bronnikov

ci: rebuild mandoc.db after installation


Sergey Bronnikov

man3: add a function's indicators

The patch addes function's indicators to a short description. Lua 5.1 Reference Manual in "3.7 – Functions and Types" [1] describes function's indicators and how to read this notation: Each function has an indicator like this: `[-o, +p, x]`. The first field, `o`, is how many elements the function pops from the stack. The second field, `p`, is how many elements the function pushes onto the stack. (Any function always pushes its results after popping its arguments.) A field in the form `x|y` means the function can push (or pop) `x` or `y` elements, depending on the situation; an interrogation mark '?' means that we cannot know how many elements the function pops/pushes by looking only at its arguments (e.g., they may depend on what is on the stack). The third field, `x`, tells whether the function may throw errors: '-' means the function never throws any error; 'm' means the function may throw an error only due to not enough memory; 'e' means the function may throw other kinds of errors; 'v' means the function may throw an error on purpose. 1. http://www.lua.org/manual/5.1/manual.html#3.7


Sergey Bronnikov

ci: install manual pages before check


Sergey Bronnikov

man3: fix a typo


Sergey Bronnikov

ci: add publish workflow


Sergey Bronnikov

ci: add check workflow


Sergey Bronnikov

man3: fix preceding dot in sentences


Sergey Bronnikov

Release 0.1.2 (tags/0.1.2)



Sergey Bronnikov

man3: add SEE ALSO sections

Follows up a previous commit "man3: add SEE ALSO sections" (b7817ecea7378269d1302883d3b11f8b268527c1).


Sergey Bronnikov

man3: add SEE ALSO sections


Sergey Bronnikov

Release 0.1.1 (tags/0.1.1)




Sergey Bronnikov

man3: luaL_Buffer.3


Sergey Bronnikov

man3: luaL_Reg.3