disable automatic whole-file compilation
authorRobin Templeton <robin@terpri.org>
Wed, 24 Sep 2014 11:51:05 +0000 (07:51 -0400)
committerRobin Templeton <robin@terpri.org>
Mon, 9 Feb 2015 18:04:27 +0000 (13:04 -0500)
src/lread.c

index 242c47e..b35382e 100644 (file)
@@ -1820,8 +1820,9 @@ readevalloop (Lisp_Object readcharfun,
   Lisp_Object tail = form;
   static Lisp_Object compile_fn;
 
-  if (!NILP (Vload_compat))
-    batch = false;
+  /* Automatic whole-file compilation temporarily disabled */
+  /* if (!NILP (Vload_compat)) */
+  batch = false;
 
   if (SCM_UNLIKELY (! compile_fn))
     compile_fn = scm_c_public_ref ("language elisp runtime", "compile-elisp");