This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via a176515cc4356f3f6de43391604e90c7e8391b99 (commit) from 5293d44e876c4d08a1a1f19b037a8afd54961eb8 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit a176515cc4356f3f6de43391604e90c7e8391b99 Author: Raymond Toy toy.raymond@gmail.com Date: Wed Aug 22 20:50:30 2012 -0700
Need to wrap EVAL-WHEN around USE-PACKAGE since use-package doesn't have special treatment in the compiler anymore.
diff --git a/src/interface/debug.lisp b/src/interface/debug.lisp index be8ac9f..42b52ec 100644 --- a/src/interface/debug.lisp +++ b/src/interface/debug.lisp @@ -15,7 +15,8 @@ ;;;
(in-package "DEBUG") -(use-package '("TOOLKIT" "INTERFACE")) +(eval-when (:compile-toplevel :load-toplevel :execute) + (use-package '("TOOLKIT" "INTERFACE")))
;;; We need to record three things globally: ;;; - The structure decribing the current debugger display
-----------------------------------------------------------------------
Summary of changes: src/interface/debug.lisp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive