From 2f0657bc3d39986aa5e1b6c3604fec3af4740a5b Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Fri, 23 Nov 2007 13:34:55 +0000
Subject: [PATCH] - Removing excessive whitespace.

---
 INSTALL.txt                         | 8 ++++----
 includes/common.inc                 | 2 +-
 includes/locale.inc                 | 2 +-
 modules/filter/filter.admin.inc     | 2 +-
 modules/taxonomy/taxonomy.admin.inc | 2 +-
 modules/taxonomy/taxonomy.module    | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/INSTALL.txt b/INSTALL.txt
index 68520618ae06..924d66144c0a 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -128,8 +128,8 @@ INSTALLATION
 
 7. REVIEW FILE SYSTEM STORAGE SETTINGS
 
-   The files directory created in step 3 is the default file system path used 
-   to store all uploaded files, as well as some temporary files created by Drupal. 
+   The files directory created in step 3 is the default file system path used
+   to store all uploaded files, as well as some temporary files created by Drupal.
    After installation, the settings for the file system path may be modified
    to store uploaded files in a different location.
 
@@ -159,7 +159,7 @@ INSTALLATION
 
      * Ensure that the new location for the path is writable by the web
        server process. To grant write permissions for a directory named
-       uploads, you may need to use the following command from a shell 
+       uploads, you may need to use the following command from a shell
        or system prompt (while in the installation directory):
 
            chmod o+w uploads
@@ -170,7 +170,7 @@ INSTALLATION
            administer > site configuration > file system
 
        Enter the path to the new location (e.g.: uploads) at the File
-       System Path prompt. 
+       System Path prompt.
 
    Changing the file system path after files have been uploaded may cause
    unexpected problems on an existing site. If you modify the file system path
diff --git a/includes/common.inc b/includes/common.inc
index b6963c677c22..1eb9bae2b43b 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1966,7 +1966,7 @@ function drupal_get_js($scope = 'header', $javascript = NULL) {
  *   'class' => 'draggable',
  * );
  * @endcode
- * 
+ *
  * Calling drupal_add_tabledrag() would then be written as such:
  * @code
  * drupal_add_tabledrag('my-module-table', 'order', 'sibling', 'my-elements-weight');
diff --git a/includes/locale.inc b/includes/locale.inc
index 5b641004969e..06b67e4f55cb 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -1016,7 +1016,7 @@ function _locale_import_read_po($op, $file, $mode = NULL, $lang = NULL, $group =
   while (!feof($fd)) {
     $line = fgets($fd, 10*1024); // A line should not be this long
     if ($lineno == 0) {
-      // The first line might come with a UTF-8 BOM, which should be removed. 
+      // The first line might come with a UTF-8 BOM, which should be removed.
       $line = str_replace("\xEF\xBB\xBF", '', $line);
     }
     $lineno++;
diff --git a/modules/filter/filter.admin.inc b/modules/filter/filter.admin.inc
index b2a5aaca0aa5..45a3836ad854 100644
--- a/modules/filter/filter.admin.inc
+++ b/modules/filter/filter.admin.inc
@@ -369,7 +369,7 @@ function theme_filter_admin_order($form) {
   $output .= drupal_render($form);
 
   drupal_add_tabledrag('filter-order', 'order', 'sibling', 'filter-order-weight', NULL, NULL, FALSE);
-  
+
   return $output;
 }
 
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 97f1300c3d4d..d0ca2016a0ff 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -278,7 +278,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
   // taxonomy_get_tree and taxonomy_get_parents may contain large numbers of
   // items so we check for taxonomy_override_selector before loading the
   // full vocabulary. Contrib modules can then intercept before
-  // hook_form_alter to provide scalable alternatives. 
+  // hook_form_alter to provide scalable alternatives.
   if (!variable_get('taxonomy_override_selector', FALSE)) {
     $parent = array_keys(taxonomy_get_parents($edit['tid']));
     $children = taxonomy_get_tree($vocabulary->vid, $edit['tid']);
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index dbb3c057e4a0..9c4ed8dec0d1 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -428,7 +428,7 @@ function taxonomy_get_vocabularies($type = NULL) {
 /**
  * Implementation of hook_form_alter().
  * Generate a form for selecting terms to associate with a node.
- * We check for taxonomy_override_selector before loading the full 
+ * We check for taxonomy_override_selector before loading the full
  * vocabulary, so contrib modules can intercept before hook_form_alter
  *  and provide scalable alternatives.
  */
-- 
GitLab