summaryrefslogtreecommitdiff
path: root/chess-maint.el
diff options
context:
space:
mode:
authorMario Lang <mlang@delysid.org>2004-03-01 16:21:50 +0000
committerMario Lang <mlang@delysid.org>2004-03-01 16:21:50 +0000
commit1f6d1e59559a318e8e28d3afd69879b763c64619 (patch)
tree27ecd887da36244c20e25e6986b6b4e5a405d110 /chess-maint.el
parent1ab4b34bd85323ecd39fc2ce6fc4a5252985b4f4 (diff)
put byte-compiling-files-p back in
Diffstat (limited to 'chess-maint.el')
-rw-r--r--chess-maint.el5
1 files changed, 3 insertions, 2 deletions
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)