From d26e832227b87befe3df87633be32db500e563f9 Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Thu, 5 Sep 2013 21:51:02 +0200 Subject: Do not interactively prompt for confirmation when opening a large PGN file. --- chess-test.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chess-test.el') diff --git a/chess-test.el b/chess-test.el index 3e93c2c..48c683f 100644 --- a/chess-test.el +++ b/chess-test.el @@ -18,8 +18,9 @@ (message "Opening chess database '%s'" file) - (let ((database (chess-database-open file)) - error-occurred) + (let* ((large-file-warning-threshold nil) + (database (chess-database-open file)) + error-occurred) (if database (progn (message "Running validation suite...") -- cgit v1.2.3