[Pkg-jed-commit] r1093 - jed-extra/trunk/debian/examples

Guenter Milde milde-guest at alioth.debian.org
Thu Apr 10 08:13:44 UTC 2008


Author: milde-guest
Date: 2008-04-10 08:13:44 +0000 (Thu, 10 Apr 2008)
New Revision: 1093

Modified:
   jed-extra/trunk/debian/examples/50jed-extra.sl
Log:
even simpler and faster loading of byte-compiled file (1 stat64 instead of 3)

Modified: jed-extra/trunk/debian/examples/50jed-extra.sl
===================================================================
--- jed-extra/trunk/debian/examples/50jed-extra.sl	2008-04-10 08:08:36 UTC (rev 1092)
+++ jed-extra/trunk/debian/examples/50jed-extra.sl	2008-04-10 08:13:44 UTC (rev 1093)
@@ -8,7 +8,7 @@
 
 % if jed-extra is removed (not purged), this file (and possibly the
 % jed-extra library dir) exist, but nothing else it expects --> abort
-$2 = path_concat($1, "libdir.sl");
+$2 = path_concat($1, "libdir.slc");
 #if (file_status($2) != 1)
 #stop
 #endif
@@ -16,7 +16,7 @@
 % Add (and initialize) library directories
 % ----------------------------------------
 
-() = evalfile(path_sans_extname($2));
+() = evalfile($2);
 
 % Utilities (required by the other modes)
 % append_libdir($1 + "utils/", 1);    % append and initialize




More information about the Pkg-jed-commit mailing list