From 7ea7a7714b1937f4a772cab9b8a67ea04b729ff8 Mon Sep 17 00:00:00 2001 From: Andrea Canciani Date: Tue, 15 Mar 2011 23:40:35 +0100 Subject: [PATCH] Fix warning by check-doc-syntax The check-doc-syntax step of 'make check' reports: ./cairo-gl.h: * cairo_device_t, which represents an GL context created by the user. Error: some function names in the docs are not followed by parentheses. Fix this by searching for the following regexp in the above files: '^[^:]*:[/ ][*]\(\|[ ].*\)\([^#']\|^\)\<\(cairo_[][<>/0-9a-z_]*\>[^][<>(]\)' --- src/cairo-gl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-gl.h b/src/cairo-gl.h index 9efde436c..d23cea7f4 100644 --- a/src/cairo-gl.h +++ b/src/cairo-gl.h @@ -43,7 +43,7 @@ * * Cairo-gl allows interoperability with other GL rendering through GL * context sharing. Cairo-gl surfaces are created in reference to a - * cairo_device_t, which represents an GL context created by the user. + * #cairo_device_t, which represents an GL context created by the user. * When that GL context is created with its sharePtr set to another * context (or vice versa), its objects (textures backing cairo-gl * surfaces) can be accessed in the other OpenGL context. This allows