diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/frame.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 4b23cb20ac4..3f31a2973c6 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -2231,8 +2231,10 @@ See also `toggle-frame-maximized'." | |||
| 2231 | (make-obsolete-variable | 2231 | (make-obsolete-variable |
| 2232 | 'window-system-version "it does not give useful information." "24.3") | 2232 | 'window-system-version "it does not give useful information." "24.3") |
| 2233 | 2233 | ||
| 2234 | ;; These variables should trigger redisplay of the current buffer. | 2234 | ;; Variables which should trigger redisplay of the current buffer. |
| 2235 | (setq redisplay--variables | 2235 | (setq redisplay--variables (make-hash-table :test 'eq :size 10)) |
| 2236 | (mapc (lambda (var) | ||
| 2237 | (puthash var 1 redisplay--variables)) | ||
| 2236 | '(line-spacing | 2238 | '(line-spacing |
| 2237 | overline-margin | 2239 | overline-margin |
| 2238 | line-prefix | 2240 | line-prefix |