aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorPer Abrahamsen2002-10-03 13:46:25 +0000
committerPer Abrahamsen2002-10-03 13:46:25 +0000
commit4c2f559e1616ec431bc2be357adbe6bc70db2edb (patch)
treef2e28634d828ae18cc9dd2c8da3f4198f29583c0 /man
parent94ae29e4c2fc672d2efe35f26ae49a95799a75a1 (diff)
downloademacs-4c2f559e1616ec431bc2be357adbe6bc70db2edb.tar.gz
emacs-4c2f559e1616ec431bc2be357adbe6bc70db2edb.zip
wid-edit.el fixes
Diffstat (limited to 'man')
-rw-r--r--man/widget.texi13
1 files changed, 13 insertions, 0 deletions
diff --git a/man/widget.texi b/man/widget.texi
index 2efb57624b5..fdac3cdde64 100644
--- a/man/widget.texi
+++ b/man/widget.texi
@@ -1536,6 +1536,19 @@ Convert @code{:args} as widget types in @var{widget}.
1536Initialize @code{:value} from @code{:args} in @var{widget}. 1536Initialize @code{:value} from @code{:args} in @var{widget}.
1537@end defun 1537@end defun
1538 1538
1539@vindex copy@r{ keyword}
1540@item :copy
1541Function to deep copy a widget type. It takes a shallow copy of the
1542widget type as an argument (made by @code{copy-sequence}), and returns a
1543deep copy. The purpose of this is to avoid having different instances
1544of combined widgets share nested attributes.
1545
1546The following predefined functions can be used here:
1547
1548@defun widget-types-copy widget
1549Copy @code{:args} as widget types in @var{widget}.
1550@end defun
1551
1539@vindex value-to-internal@r{ keyword} 1552@vindex value-to-internal@r{ keyword}
1540@item :value-to-internal 1553@item :value-to-internal
1541Function to convert the value to the internal format. The function 1554Function to convert the value to the internal format. The function