Mercurial > hg > xemacs-beta
comparison man/widget.texi @ 1347:8d350b095c21
[xemacs-hg @ 2003-03-09 12:59:36 by ben]
oops, C++ bites again
widget.texi: Fix Turnbull typos.
config.inc.samp: Note that relative directories are a no-no in BUILD_DIR and
SOURCE_DIR. Use paths relative to $(MAKEROOT) instead.
file-coding.c: Fix up internal magic-cookie code to also check for
`;;;###coding system', already handled by the (redundant)
code in files.el.
regex.c: Fix problem with ordering of initializations and statements -- OK in
C++, not in C.
search.c: Indentation.
author | ben |
---|---|
date | Sun, 09 Mar 2003 12:59:45 +0000 |
parents | ffa6c90799b1 |
children | 2ba4f06a264d |
comparison
equal
deleted
inserted
replaced
1346:01c57eb70ae9 | 1347:8d350b095c21 |
---|---|
1531 The syntax for the @var{type} arguments to these functions is described | 1531 The syntax for the @var{type} arguments to these functions is described |
1532 in @ref{Basic Types}. | 1532 in @ref{Basic Types}. |
1533 | 1533 |
1534 @defun widget-create-child-and-convert parent type &rest args | 1534 @defun widget-create-child-and-convert parent type &rest args |
1535 As a child of @var{parent}, create a widget with type @var{type} and | 1535 As a child of @var{parent}, create a widget with type @var{type} and |
1536 value @var{value}. @type{type} is copied, and the @code{:widget-contvert} | 1536 value @var{value}. @var{type} is copied, and the @code{:widget-contvert} |
1537 method is applied to the optional keyword arguments from @var{args}. | 1537 method is applied to the optional keyword arguments from @var{args}. |
1538 @end defun | 1538 @end defun |
1539 | 1539 |
1540 @defun widget-create-child parent type | 1540 @defun widget-create-child parent type |
1541 As a child of @var{parent}, create a widget with type @var{type}. | 1541 As a child of @var{parent}, create a widget with type @var{type}. |
1542 @type{type} is copied, but no conversion method is applied. | 1542 @var{type} is copied, but no conversion method is applied. |
1543 @end defun | 1543 @end defun |
1544 | 1544 |
1545 @defun widget-create-child-value parent type value | 1545 @defun widget-create-child-value parent type value |
1546 As a child of @var{parent}, create a widget with type @var{type} and | 1546 As a child of @var{parent}, create a widget with type @var{type} and |
1547 value @var{value}. @type{type} is copied, but no conversion method is | 1547 value @var{value}. @var{type} is copied, but no conversion method is |
1548 applied. | 1548 applied. |
1549 @end defun | 1549 @end defun |
1550 | 1550 |
1551 @defun widget-convert type &rest args | 1551 @defun widget-convert type &rest args |
1552 Convert @var{type} to a widget without inserting it in the buffer. | 1552 Convert @var{type} to a widget without inserting it in the buffer. |