aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2008-05-07 12:52:22 +0000
committerAndreas Schwab2008-05-07 12:52:22 +0000
commit51a0cb35346a57d31c08400aa9aab3a6b9791efe (patch)
tree001064381768f1718ac49cd6fd6dabfa72297b0d
parentd95d9b236022805a141f68f2ad73a9224d7e4d0a (diff)
downloademacs-51a0cb35346a57d31c08400aa9aab3a6b9791efe.tar.gz
emacs-51a0cb35346a57d31c08400aa9aab3a6b9791efe.zip
Require 'cl when compiling.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/window.el2
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 @@
12008-05-07 Andreas Schwab <schwab@suse.de>
2
3 * window.el: Require 'cl when compiling.
4
12008-05-07 Dan Nicolaescu <dann@ics.uci.edu> 52008-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.
32If the value is `height', then only the window's height is fixed. 34If the value is `height', then only the window's height is fixed.