diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/cus-edit.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f9de2fcdd36..877c3e78f9f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2002-12-29 Markus Rost <rost@math.ohio-state.edu> + + * cus-edit.el (customize-browse): Call `widget-setup'. + 2002-12-29 Andreas Schwab <schwab@suse.de> * Makefile.in: Generate cus-load.el and finder-inf.el in the diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index d2321f48a68..4369437a136 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1454,6 +1454,7 @@ item in another window.\n\n")) :custom-state 'unknown :tag (custom-unlispify-tag-name group) :value group)) + (widget-setup) (goto-char (point-min))) (define-widget 'custom-browse-visibility 'item |