changeset 755:da44ff90109f

[xemacs-hg @ 2002-02-16 07:25:39 by stephent] Fix braces. <m3u1sigwgf.fsf@mail.contactor.se>
author stephent
date Sat, 16 Feb 2002 07:25:39 +0000
parents 8661af9617f8
children 00793f182d30
files man/ChangeLog man/external-widget.texi
diffstat 2 files changed, 10 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/man/ChangeLog	Fri Feb 15 20:57:58 2002 +0000
+++ b/man/ChangeLog	Sat Feb 16 07:25:39 2002 +0000
@@ -1,3 +1,9 @@
+2002-02-16  Stephen J. Turnbull  <stephen@xemacs.org>
+
+	* external-widget.texi
+	(Example Program Using the External Client Widget): Fix braces.
+	From Mats Lidell <matsl@contactor.se>.
+
 2002-02-14  Stephen J. Turnbull  <stephen@xemacs.org>
 
 	* external-widget.texi
--- a/man/external-widget.texi	Fri Feb 15 20:57:58 2002 +0000
+++ b/man/external-widget.texi	Sat Feb 16 07:25:39 2002 +0000
@@ -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