Hi,
Just got this error when building from very latest ...
makeinfo -o ../info/external-widget.info external-widget.texi
external-widget.texi:176: Misplaced {.
external-widget.texi:196: Misplaced }.
external-widget.texi:202: Misplaced {.
external-widget.texi:205: Misplaced }.
My fix below. (Had to add @ in front of { and } in the example but not
knowing texinfo good enought this seems silly. We are in an example
after all.)
Question: Am I using and old makeinfo (4.0b)? (or have I really found
a bug? ;-)
----------------------------------------------------------------------
Index: man/external-widget.texi
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/man/external-widget.texi,v
retrieving revision 1.7
diff -u -r1.7 external-widget.texi
--- man/external-widget.texi 2002/02/13 15:28:57 1.7
+++ man/external-widget.texi 2002/02/15 23:13:47
@@ -173,7 +173,7 @@
#include "ExternalClient.h"
main (int argc, char *argv[])
-{
+@{
Widget toplevel, emacs;
XtAppContext app;
@@ -193,16 +193,16 @@
printf ("(make-frame '(window-id \"%d\"))\n",
XtWindow(emacs));
XtAppMainLoop (app);
-}
+@}
/* This function doesn't belong here but somehow it's not getting resolved
from the library. */
void
fatal (char *msg)
-{
+@{
fprintf (stderr, "%s", msg);
exit (1);
-}
+@}
@end example
----------------------------------------------------------------------
Yours
--
%% Mats