* makeinfo(1) returns the error
        doc.texi:2: @include `/tmp/foo-bar/inc.texi': No such file or directory.
      with a hyphen erroneously dropped from the include-file path.

I just installed this change in makeinfo, which fixes it as far as I
could tell.  Testing always welcome.

Thanks again for the report,
Karl

--- cmds.c.~1.79.~      2008-01-31 10:33:27.000000000 -0800
+++ cmds.c      2008-02-15 09:50:52.000000000 -0800
@@ -1897,3 +1897,9 @@ handle_include (int verbatim_include)
      everything.  TeX will only work with @value.  */
-  filename = text_expansion (arg);
+  {
+    int save_in_fixed_width_font = in_fixed_width_font;
+    in_fixed_width_font = 1;  /* do not change -- to -, etc.  */
+    filename = text_expansion (arg);
+    in_fixed_width_font = save_in_fixed_width_font;    
+  }
+
   free (arg);


Reply via email to