From a6d4aa147415acf875300176c5ca98ca72594bec Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Thu, 29 Jan 2009 17:52:13 -0500 Subject: [PATCH] fix libext2fs info page name In Red Hat bug #481620 Jerry reported that the libext2fs info page is not accesable via "info libext2fs" but is via "info libext2fs.info" and suggested that the following change should fix it. Additional info from Jerry: The problem is that makeinfo 4.12 interprets the dot in "libext2fs.info" to be the end of the description portion of the info entry, even though it hasn't seen the closing parenthesis yet. Making the reference be to just "libext2fs" works. Addresses-Red-Hat-Bugzilla: #481620 Reported-by: Jerry James Signed-off-by: Eric Sandeen Signed-off-by: Theodore Ts'o --- doc/libext2fs.texinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/libext2fs.texinfo b/doc/libext2fs.texinfo index ab41248..1836cdc 100644 --- a/doc/libext2fs.texinfo +++ b/doc/libext2fs.texinfo @@ -8,7 +8,7 @@ @ifinfo @dircategory Development @direntry -* libext2fs: (libext2fs.info). The EXT2FS library. +* libext2fs: (libext2fs). The EXT2FS library. @end direntry @end ifinfo -- 1.8.3.1