Mercurial > hg > xemacs-beta
changeset 753:41528f633ff7
[xemacs-hg @ 2002-02-13 15:28:56 by stephent]
documenting packages <873d05z9l3.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Wed, 13 Feb 2002 15:28:57 +0000 |
parents | 5d60b99c1ded |
children | 8661af9617f8 |
files | man/ChangeLog man/external-widget.texi |
diffstat | 2 files changed, 14 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/man/ChangeLog Wed Feb 13 13:06:53 2002 +0000 +++ b/man/ChangeLog Wed Feb 13 15:28:57 2002 +0000 @@ -1,3 +1,9 @@ +2002-02-14 Stephen J. Turnbull <stephen@xemacs.org> + + * external-widget.texi + (Example Program Using the External Client Widget): Fix + documentation to explain needed resource settings. + 2002-02-13 Stephen J. Turnbull <stephen@xemacs.org> * lispref/packaging.texi (Documenting Packages): New node.
--- a/man/external-widget.texi Wed Feb 13 13:06:53 2002 +0000 +++ b/man/external-widget.texi Wed Feb 13 15:28:57 2002 +0000 @@ -131,13 +131,14 @@ @node Example Program Using the External Client Widget, , Motif-Specific Info About the External Client Widget, Top @chapter Example Program Using the External Client Widget -This is a very simple program. It currently doesn't actually work; the -client window does not accept keystroke input, although you can edit -with the mouse. It also has some issues with exiting. Be careful to -destroy the Emacs frame before exiting the client program. +This is a very simple program. It has some issues with exiting. +Be careful to destroy the Emacs frame in the client window before +exiting the client program. @example /* + XEmacsInside.c + Copyright (C) 2002 Free Software Foundation This program is part of XEmacs. XEmacs is free software. See the @@ -153,8 +154,9 @@ -lextcli_Xt -lXt -lX11 -lSM -lICE \ -o XEmacsInside XEmacsInside.c - Run it; it pops up a window, and prints a Lisp form on stdout. Eval - the form in XEmacs configured --external-widget. + Run it with the resource "*input: True" and a reasonable geometry spec. + It pops up a window, and prints a Lisp form on stdout. Eval the form + in an XEmacs configured with --external-widget. Written by Stephen J. Turnbull <stephen@@xemacs.org>