Commit 0dba79dd 0dba79dd2e715c2e3d007f96de0bf1f1cd7f5eba by uid65697

Minor fixes.

1 parent d2de3e89
...@@ -22,7 +22,7 @@ The resources allocate are release. ...@@ -22,7 +22,7 @@ The resources allocate are release.
22 @deftypefun int body_set_stream (body_t @var{body}, stream_t @var{stream}, void *@var{owner}) 22 @deftypefun int body_set_stream (body_t @var{body}, stream_t @var{stream}, void *@var{owner})
23 @end deftypefun 23 @end deftypefun
24 24
25 @deftypefun int body_get_filename __P ((body_t @var{body}, char *@var{buffer}, size_t@var{buflen}, size_t *@var{pwriten}) 25 @deftypefun int body_get_filename __P ((body_t @var{body}, char *@var{buffer}, size_t @var{buflen}, size_t *@var{pwriten}))
26 @end deftypefun 26 @end deftypefun
27 27
28 @deftypefun int body_set_filename (body_t @var{body}, const char*@var{buffer}) 28 @deftypefun int body_set_filename (body_t @var{body}, const char*@var{buffer})
......
...@@ -411,7 +411,7 @@ the instance of sieve machine. See @code{sieve_machine_init()}. ...@@ -411,7 +411,7 @@ the instance of sieve machine. See @code{sieve_machine_init()}.
411 This function returns the current message. 411 This function returns the current message.
412 @end deftypefun 412 @end deftypefun
413 413
414 @deftypefun size_t sieve_get_message_num (sieve_machine_t @var{mach}); 414 @deftypefun size_t sieve_get_message_num (sieve_machine_t @var{mach})
415 This function returns the current message number in the mailbox. 415 This function returns the current message number in the mailbox.
416 If there are no mailbox, i.e. the execution of the sieve code is started 416 If there are no mailbox, i.e. the execution of the sieve code is started
417 with @code{sieve_message}, this function returns 1. 417 with @code{sieve_message}, this function returns 1.
...@@ -429,7 +429,7 @@ Returns the authentication ticket for this machine. ...@@ -429,7 +429,7 @@ Returns the authentication ticket for this machine.
429 Returns the mailer. 429 Returns the mailer.
430 @end deftypefun 430 @end deftypefun
431 431
432 @deftypefun {char *} sieve_get_daemon_email __P((sieve_machine_t @var{mach}) 432 @deftypefun {char *} sieve_get_daemon_email (sieve_machine_t @var{mach})
433 This function returns the @dfn{daemon email} associated with this 433 This function returns the @dfn{daemon email} associated with this
434 instance of sieve machine. The daemon email is an email address used in 434 instance of sieve machine. The daemon email is an email address used in
435 envelope from addresses of automatic reply messages. By default its local 435 envelope from addresses of automatic reply messages. By default its local
...@@ -474,7 +474,7 @@ _sieve_default_parse_error (void *unused, ...@@ -474,7 +474,7 @@ _sieve_default_parse_error (void *unused,
474 @end example 474 @end example
475 @end deftypefun 475 @end deftypefun
476 476
477 @deftypefun void sieve_set_debug (sieve_machine_t @var{mach}, sieve_printf_t @var{debug})); 477 @deftypefun void sieve_set_debug (sieve_machine_t @var{mach}, sieve_printf_t @var{debug});
478 This function sets the debug printer function for the machine. If it is 478 This function sets the debug printer function for the machine. If it is
479 not set, the default debug printer is @code{NULL} which means no 479 not set, the default debug printer is @code{NULL} which means no
480 debugging information will be displayed. 480 debugging information will be displayed.
......