summaryrefslogtreecommitdiff
path: root/lisp/window.el
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2022-05-22 14:48:30 +0200
committerMichael Albinus <michael.albinus@gmx.de>2022-05-22 14:48:30 +0200
commit5088ebc8eb7f5451be195481f00c73ba994efa52 (patch)
treed2c6e404ca461f2eb87b11edffbc26f20f4c8aba /lisp/window.el
parent4c1af80322145159530a057d97a8828318e560c8 (diff)
downloademacs-5088ebc8eb7f5451be195481f00c73ba994efa52.tar.gz
emacs-5088ebc8eb7f5451be195481f00c73ba994efa52.tar.bz2
emacs-5088ebc8eb7f5451be195481f00c73ba994efa52.zip
* lisp/window.el (display-buffer-avoid-small-windows): Fix :type.
Diffstat (limited to 'lisp/window.el')
-rw-r--r--lisp/window.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 3fe48e25228..585c64e687a 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -2492,7 +2492,7 @@ and no others."
"If non-nil, windows that have fewer lines than this are avoided.
This is used by `get-lru-window'. The value is interpreted in units
of the frame's canonical line height, like `window-total-height' does."
- :type '(choice nil number)
+ :type '(choice (const nil) number)
:version "29.1"
:group 'windows)