21.4.14 "Reasonable Discussion".
[chise/xemacs-chise.git.1] / man / lispref / dialog.texi
index 1156308..a282f5e 100644 (file)
@@ -1,6 +1,6 @@
 @c -*-texinfo-*-
 @c This is part of the XEmacs Lisp Reference Manual.
-@c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc. 
+@c Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
 @c See the file lispref.texi for copying conditions.
 @setfilename ../../info/dialog.info
 @node Dialog Boxes, Toolbar, Menus, Top
@@ -44,15 +44,15 @@ that all following buttons should be flushright instead of flushleft.
 The syntax, more precisely:
 
 @example
-   form                :=  <something to pass to `eval'>
-   command     :=  <a symbol or string, to pass to `call-interactively'>
-   callback    :=  command | form
-   active-p    :=  <t, nil, or a form to evaluate to decide whether this
-                   button should be selectable>
-   name                :=  <string>
-   partition   :=  'nil'
-   button      :=  '['  name callback active-p ']'
-   dialog      :=  '(' name [ button ]+ [ partition [ button ]+ ] ')'
+   form         :=  <something to pass to `eval'>
+   command      :=  <a symbol or string, to pass to `call-interactively'>
+   callback     :=  command | form
+   active-p     :=  <t, nil, or a form to evaluate to decide whether this
+                    button should be selectable>
+   name         :=  <string>
+   partition    :=  'nil'
+   button       :=  '['  name callback active-p ']'
+   dialog       :=  '(' name [ button ]+ [ partition [ button ]+ ] ')'
 @end example
 
 @node Dialog Box Functions