Index: misc/form.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/form.js,v
retrieving revision 1.9
diff -u -p -r1.9 form.js
--- misc/form.js	27 Apr 2009 20:19:35 -0000	1.9
+++ misc/form.js	25 Aug 2009 09:47:49 -0000
@@ -17,7 +17,7 @@ $.fn.getSummary = function () {
  *   retrieved or a string (which is returned each time).
  */
 $.fn.setSummary = function (callback) {
-  var that = this;
+  var self = this;
 
   // To facilitate things, the callback should always be a function. If it's
   // not, we wrap it into an anonymous function which just returns the value.
@@ -32,7 +32,7 @@ $.fn.setSummary = function (callback) {
     // (re-)added.
     .unbind('formUpdated.summary')
     .bind('formUpdated.summary', function () {
-      that.trigger('summaryUpdated');
+      self.trigger('summaryUpdated');
     })
     // The actual summaryUpdated handler doesn't fire when the callback is
     // changed, so we have to do this manually.
Index: misc/vertical-tabs.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/vertical-tabs.js,v
retrieving revision 1.5
diff -u -p -r1.5 vertical-tabs.js
--- misc/vertical-tabs.js	31 May 2009 00:51:41 -0000	1.5
+++ misc/vertical-tabs.js	25 Aug 2009 09:47:50 -0000
@@ -55,17 +55,17 @@ Drupal.behaviors.verticalTabs = {
  *   - fieldset: The jQuery object of the fieldset that is the tab pane.
  */
 Drupal.verticalTab = function (settings) {
-  var that = this;
+  var self = this;
   $.extend(this, settings, Drupal.theme('verticalTab', settings));
 
   this.link.click(function () {
-    that.focus();
+    self.focus();
     return false;
   });
 
   this.fieldset
     .bind('summaryUpdated', function () {
-      that.updateSummary();
+      self.updateSummary();
     })
     .trigger('summaryUpdated');
 };
