diff options
| author | Andreas Schwab | 2008-05-07 12:52:22 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-05-07 12:52:22 +0000 |
| commit | 51a0cb35346a57d31c08400aa9aab3a6b9791efe (patch) | |
| tree | 001064381768f1718ac49cd6fd6dabfa72297b0d | |
| parent | d95d9b236022805a141f68f2ad73a9224d7e4d0a (diff) | |
| download | emacs-51a0cb35346a57d31c08400aa9aab3a6b9791efe.tar.gz emacs-51a0cb35346a57d31c08400aa9aab3a6b9791efe.zip | |
Require 'cl when compiling.
| -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 @@ | |||
| 1 | 2008-05-07 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * window.el: Require 'cl when compiling. | ||
| 4 | |||
| 1 | 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * vc-dispatcher.el (vc-dir-insert-directories): Default to t. | 7 | * 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 @@ | |||
| 27 | 27 | ||
| 28 | ;;; Code: | 28 | ;;; Code: |
| 29 | 29 | ||
| 30 | (eval-when-compile (require 'cl)) | ||
| 31 | |||
| 30 | (defvar window-size-fixed nil | 32 | (defvar window-size-fixed nil |
| 31 | "*Non-nil in a buffer means windows displaying the buffer are fixed-size. | 33 | "*Non-nil in a buffer means windows displaying the buffer are fixed-size. |
| 32 | If the value is `height', then only the window's height is fixed. | 34 | If the value is `height', then only the window's height is fixed. |