From 1f6d1e59559a318e8e28d3afd69879b763c64619 Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Mon, 1 Mar 2004 16:21:50 +0000 Subject: put byte-compiling-files-p back in --- chess-maint.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chess-maint.el') diff --git a/chess-maint.el b/chess-maint.el index 2bae068..4bfcfd4 100644 --- a/chess-maint.el +++ b/chess-maint.el @@ -5,8 +5,9 @@ (require 'chess-pgn) (defmacro assert (form) - `(unless ,form - (error "Assertion failed: %s" (pp-to-string ,form)))) + (unless (byte-compiling-files-p) + `(unless ,form + (error "Assertion failed: %s" (pp-to-string ,form))))) (defun chess-generate-texinfo-file () (require 'lispdoc) -- cgit v1.2.3