Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
38d0d987
Commit
38d0d987
authored
Sep 22, 2005
by
David Ponce
Browse files
(tree-widget-value-create): Fix previous change.
parent
e5534f18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lisp/tree-widget.el
lisp/tree-widget.el
+6
-2
No files found.
lisp/tree-widget.el
View file @
38d0d987
...
...
@@ -651,7 +651,9 @@ This hook should be local in the buffer setup to display widgets.")
(
widget-put
tree
:node
(
widget-convert
node
))
;; Create the icon widget for the expanded tree.
(
push
(
widget-create-child-and-convert
tree
(
widget-get
tree
(
if
args
:open-icon
:empty-icon
)))
tree
(
widget-get
tree
(
if
args
:open-icon
:empty-icon
))
;; Pass the node widget to child.
:node
(
widget-get
tree
:node
))
buttons
)
;; Create the tree node widget.
(
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.")
(
widget-put
tree
:node
(
widget-convert
node
))
;; Create the icon widget for the collapsed tree.
(
push
(
widget-create-child-and-convert
tree
(
widget-get
tree
:close-icon
))
tree
(
widget-get
tree
:close-icon
)
;; Pass the node widget to child.
:node
(
widget-get
tree
:node
))
buttons
)
;; Create the tree node widget.
(
push
(
widget-create-child
tree
(
widget-get
tree
:node
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment