1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35:10 +00:00

doc/lua.xml: add missing lua apis (#716)

* doc/lua.xml: add missing lua apis

* doc/lua.xml: tidy dirty markups
This commit is contained in:
lasers 2018-12-22 11:57:41 -06:00 committed by Brenden Matthews
parent bb8723dd36
commit d8ed1e20d2

View File

@ -190,9 +190,12 @@
<option>function</option>
</term>
<listitem>
<para>
Call this function to return a new cairo_text_extents_t structure. A creation function for this structure is not provided by the cairo API. After calling this, you should use tolua.takeownership() on the return value to ensure ownership is passed properly.
</para>
<para>Call this function to return a new
cairo_text_extents_t structure. A creation function for
this structure is not provided by the cairo API. After
calling this, you should use tolua.takeownership() on
the return value to ensure ownership is passed
properly.</para>
</listitem>
</varlistentry>
<varlistentry>
@ -203,9 +206,12 @@
<option>function</option>
</term>
<listitem>
<para>
Call this function to return a new cairo_font_extents_t structure. A creation function for this structure is not provided by the cairo API. After calling this, you should use tolua.takeownership() on the return value to ensure ownership is passed properly.
</para>
<para>Call this function to return a new
cairo_font_extents_t structure. A creation function for
this structure is not provided by the cairo API. After
calling this, you should use tolua.takeownership() on
the return value to ensure ownership is passed
properly.</para>
</listitem>
</varlistentry>
<varlistentry>
@ -216,9 +222,49 @@
<option>function</option>
</term>
<listitem>
<para>
Call this function to return a new cairo_matrix_t structure. A creation function for this structure is not provided by the cairo API. After calling this, you should use tolua.takeownership() on the return value to ensure ownership is passed properly.
</para>
<para>Call this function to return a new cairo_matrix_t
structure. A creation function for this structure is
not provided by the cairo API. After calling this, you
should use tolua.takeownership() on the return value to
ensure ownership is passed properly.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>
<option>
cairo_text_extents_t:destroy(structure)</option>
</command>
<option>function</option>
</term>
<listitem>
<para>Call this function to free memory allocated by
cairo_text_extents_t:create.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>
<option>
cairo_font_extents_t:destroy(structure)</option>
</command>
<option>function</option>
</term>
<listitem>
<para>Call this function to free memory allocated by
cairo_font_extents_t:create.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<command>
<option>cairo_matrix_t:destroy(structure)</option>
</command>
<option>function</option>
</term>
<listitem>
<para>Call this function to free memory allocated by
cairo_matrix_t:create.</para>
</listitem>
</varlistentry>
</variablelist>