From c6a7971a1e83d80050c4e2cfb42401a8d3c1b321 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 18 Sep 2008 15:28:43 -0400 Subject: [PATCH] [doc/public/check-doc-coverage.sh] Fix typo in checking cairo-undeclared.txt Copy/paste error meant we were not checking cairo-undeclared.txt there. Indeed the test was passing even though Carl forgot to remove lcd-fitlering API from docs. The test fails now. --- doc/public/check-doc-coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/public/check-doc-coverage.sh b/doc/public/check-doc-coverage.sh index 170e312a0..26212dc01 100755 --- a/doc/public/check-doc-coverage.sh +++ b/doc/public/check-doc-coverage.sh @@ -16,7 +16,7 @@ test -z "$srcdir" && srcdir=. stat=0 if test -f "$DOC_MODULE-undeclared.txt"; then - undeclared=`cat "$DOC_MODULE-unused.txt"` + undeclared=`cat "$DOC_MODULE-undeclared.txt"` if test -n "$undeclared"; then echo Undeclared documentation symbols: 1>&2 cat "$DOC_MODULE-undeclared.txt" 1>&2