? .DS_Store
? drupal-jscache-.patch
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.756.2.83
diff -u -u -p -r1.756.2.83 common.inc
--- includes/common.inc	11 May 2010 09:43:18 -0000	1.756.2.83
+++ includes/common.inc	11 May 2010 16:14:53 -0000
@@ -2409,8 +2409,8 @@ function drupal_build_js_cache($files, $
     // Build aggregate JS file.
     foreach ($files as $path => $info) {
       if ($info['preprocess']) {
-        // Append a ';' after each JS file to prevent them from running together.
-        $contents .= file_get_contents($path) .';';
+        // Append a ';' and a newline after each JS file to prevent them from running together.
+        $contents .= file_get_contents($path) . ";\n";
       }
     }
 
