diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-11-25 00:29:07 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-11-25 00:29:07 +0100 |
commit | 20e3b4e584ae156d29996b30d9da1460ba617f49 (patch) | |
tree | 9cf41c23bdf3447b8ca89756f46f32980bd2985f /guile | |
parent | 7ce1200106b411bde7d2956e00204d8fda58f5bd (diff) | |
download | gnutls-20e3b4e584ae156d29996b30d9da1460ba617f49.tar.gz |
guile: Fix the (unused) `output-procedure-texi-documentation-from-c-file'.
Reported by Mike Gran <spk121@yahoo.com>.
Diffstat (limited to 'guile')
-rw-r--r-- | guile/modules/system/documentation/output.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guile/modules/system/documentation/output.scm b/guile/modules/system/documentation/output.scm index 4f996ffeb2..347a8b64f1 100644 --- a/guile/modules/system/documentation/output.scm +++ b/guile/modules/system/documentation/output.scm @@ -1,6 +1,6 @@ ;;; output.scm -- Output documentation "snarffed" from C files in Texi/GDF. ;;; -;;; Copyright 2006, 2007, 2010 Free Software Foundation, Inc. +;;; Copyright 2006, 2007, 2010, 2011 Free Software Foundation, Inc. ;;; ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -163,7 +163,7 @@ function." (for-each (lambda (texi-string) (display texi-string port)) (map procedure-texi-documentation - (run-cpp-and-extract-snarfing cpp c-file cflags)))) + (run-cpp-and-extract-snarfing c-file cpp cflags)))) ;;; output.scm ends here |