From 65d50a32ed00de158ea812a179597ab3f089708b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pinot?= Date: Sat, 31 Mar 2012 12:04:02 +0000 Subject: [PATCH] =?UTF-8?q?From:=20J=C3=A9r=C3=B4me=20Pinot=20=20Subject:=20[E-devel]=20[patch]=20embryo=20doxygen=20do?= =?UTF-8?q?c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update doxyfile and fix a param name. SVN revision: 69821 --- legacy/embryo/doc/Doxyfile.in | 6 ++---- legacy/embryo/src/lib/Embryo.h | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/legacy/embryo/doc/Doxyfile.in b/legacy/embryo/doc/Doxyfile.in index 6659a7dfe5..5476347159 100644 --- a/legacy/embryo/doc/Doxyfile.in +++ b/legacy/embryo/doc/Doxyfile.in @@ -41,7 +41,6 @@ VERBATIM_HEADERS = NO SHOW_INCLUDE_FILES = NO JAVADOC_AUTOBRIEF = YES MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO INHERIT_DOCS = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES @@ -67,7 +66,7 @@ RECURSIVE = NO EXCLUDE = EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = -EXAMPLE_PATH = @top_srcdir@/src/examples +EXAMPLE_PATH = EXAMPLE_PATTERNS = EXAMPLE_RECURSIVE = NO INPUT_FILTER = @@ -132,8 +131,7 @@ GRAPHICAL_HIERARCHY = NO DOT_IMAGE_FORMAT = png DOT_PATH = DOTFILE_DIRS = -MAX_DOT_GRAPH_WIDTH = 512 -MAX_DOT_GRAPH_HEIGHT = 512 +DOT_GRAPH_MAX_NODES = 50 GENERATE_LEGEND = YES DOT_CLEANUP = YES SEARCHENGINE = NO diff --git a/legacy/embryo/src/lib/Embryo.h b/legacy/embryo/src/lib/Embryo.h index 4003f6b968..bd76fdfb64 100644 --- a/legacy/embryo/src/lib/Embryo.h +++ b/legacy/embryo/src/lib/Embryo.h @@ -772,7 +772,7 @@ EAPI int embryo_program_recursion_get(Embryo_Program *ep); * declared @c public in the Small source code. * * @param ep The given program. - * @param fn The given function. Normally "main", in which case the + * @param func The given function. Normally "main", in which case the * constant @c EMBRYO_FUNCTION_MAIN can be used. * @return @c EMBRYO_PROGRAM_OK on success. @c EMBRYO_PROGRAM_SLEEP if the * program is halted by the Small @c sleep call.