aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ponce2005-09-22 09:54:54 +0000
committerDavid Ponce2005-09-22 09:54:54 +0000
commit38d0d9879c956edcbd3c79db4e34751086f1c040 (patch)
tree3315a4da37281778657ce2ee19cf66acc2b2dd9e
parente5534f18e8f11e921a2cba37026612019339f216 (diff)
downloademacs-38d0d9879c956edcbd3c79db4e34751086f1c040.tar.gz
emacs-38d0d9879c956edcbd3c79db4e34751086f1c040.zip
(tree-widget-value-create): Fix previous change.
-rw-r--r--lisp/tree-widget.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/tree-widget.el b/lisp/tree-widget.el
index 28207436688..d29e224f549 100644
--- a/lisp/tree-widget.el
+++ b/lisp/tree-widget.el
@@ -651,7 +651,9 @@ This hook should be local in the buffer setup to display widgets.")
651 (widget-put tree :node (widget-convert node)) 651 (widget-put tree :node (widget-convert node))
652 ;; Create the icon widget for the expanded tree. 652 ;; Create the icon widget for the expanded tree.
653 (push (widget-create-child-and-convert 653 (push (widget-create-child-and-convert
654 tree (widget-get tree (if args :open-icon :empty-icon))) 654 tree (widget-get tree (if args :open-icon :empty-icon))
655 ;; Pass the node widget to child.
656 :node (widget-get tree :node))
655 buttons) 657 buttons)
656 ;; Create the tree node widget. 658 ;; Create the tree node widget.
657 (push (widget-create-child tree (widget-get tree :node)) 659 (push (widget-create-child tree (widget-get tree :node))
@@ -701,7 +703,9 @@ This hook should be local in the buffer setup to display widgets.")
701 (widget-put tree :node (widget-convert node)) 703 (widget-put tree :node (widget-convert node))
702 ;; Create the icon widget for the collapsed tree. 704 ;; Create the icon widget for the collapsed tree.
703 (push (widget-create-child-and-convert 705 (push (widget-create-child-and-convert
704 tree (widget-get tree :close-icon)) 706 tree (widget-get tree :close-icon)
707 ;; Pass the node widget to child.
708 :node (widget-get tree :node))
705 buttons) 709 buttons)
706 ;; Create the tree node widget. 710 ;; Create the tree node widget.
707 (push (widget-create-child tree (widget-get tree :node)) 711 (push (widget-create-child tree (widget-get tree :node))