branch: externals/cus-abbrev
commit d598728a1d584250f2c964bf9f601a6b10de75e2
Author: Mauro Aranda <[email protected]>
Commit: Mauro Aranda <[email protected]>
Add missing widget-setup call
* cus-abbrev.el (custom-abbrev-toggle-hide-abbrev-table): Call
widget-setup so editable fields can be edited after showing again
the abbrev-table widget.
---
cus-abbrev.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/cus-abbrev.el b/cus-abbrev.el
index 7f307b5527..1b987b3859 100644
--- a/cus-abbrev.el
+++ b/cus-abbrev.el
@@ -243,7 +243,8 @@ This command also saves any other editions made to the
abbrev table."
(if val
(widget-value-set w (widget-get w :stashed-value))
(widget-put w :stashed-value (widget-value w))
- (widget-value-set w (widget-value w)))))
+ (widget-value-set w (widget-value w)))
+ (widget-setup)))
;;;###autoload
(defun customize-abbrevs (&optional table-name)