better vips_warn() docs

This commit is contained in:
John Cupitt 2015-04-13 15:53:21 +01:00
parent 951019fcbc
commit 9f0ecae95a
2 changed files with 10 additions and 6 deletions

7
TODO
View File

@ -1,3 +1,10 @@
- try:
vips embed k2.jpg x.jpg 10 10 1000 1000 --vips-cache-trace
we don't seem to show all ops or images, can we improve this?
- does cplusplus need flipver() etc.?
- are the mosaic functions calling vips_fastcor()? it must be very slow

View File

@ -445,12 +445,9 @@ vips_info( const char *domain, const char *fmt, ... )
* @fmt: printf()-style format string for the message
* @ap: arguments to the format string
*
* Sends a formatted warning message to stderr. If you define the
* environment variable VIPS_WARNING, these message are surpressed.
* Exactly as vips_warn(), but takes a va_list argument.
*
* Warning messages are used to report things like overflow counts.
*
* See also: vips_info(), vips_warn().
* See also: vips_warn().
*/
void
vips_vwarn( const char *domain, const char *fmt, va_list ap )
@ -477,7 +474,7 @@ vips_vwarn( const char *domain, const char *fmt, va_list ap )
* @...: arguments to the format string
*
* Sends a formatted warning message to stderr. If you define the
* environment variable IM_WARNING, these message are surpressed.
* environment variable VIPS_WARNING, these message are supressed.
*
* Warning messages are used to report things like overflow counts.
*