diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/window.el | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dbbf90660e7..e276d537995 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-05-07 Andreas Schwab <schwab@suse.de> + + * window.el: Require 'cl when compiling. + 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu> * vc-dispatcher.el (vc-dir-insert-directories): Default to t. diff --git a/lisp/window.el b/lisp/window.el index 50e01cae718..1b6adf054cf 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -27,6 +27,8 @@ ;;; Code: +(eval-when-compile (require 'cl)) + (defvar window-size-fixed nil "*Non-nil in a buffer means windows displaying the buffer are fixed-size. If the value is `height', then only the window's height is fixed. |
