diff options
| -rw-r--r-- | lisp/simple.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 6aae21a3f0c..f9839826ff6 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3491,7 +3491,11 @@ in the definition is used to check that VALUE is valid." | |||
| 3491 | (unless (widget-apply type :match val) | 3491 | (unless (widget-apply type :match val) |
| 3492 | (error "Value `%S' does not match type %S of %S" | 3492 | (error "Value `%S' does not match type %S of %S" |
| 3493 | val (car type) var)))) | 3493 | val (car type) var)))) |
| 3494 | (set var val)) | 3494 | (set var val) |
| 3495 | |||
| 3496 | ;; Force a thorough redisplay for the case that the variable | ||
| 3497 | ;; has an effect on the display, like `tab-width' has. | ||
| 3498 | (force-mode-line-update)) | ||
| 3495 | 3499 | ||
| 3496 | ;; Define the major mode for lists of completions. | 3500 | ;; Define the major mode for lists of completions. |
| 3497 | 3501 | ||