Index: includes/form.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/form.inc,v
retrieving revision 1.268
diff -u -d -F^\s*function -r1.268 form.inc
--- includes/form.inc	15 Mar 2008 11:02:47 -0000	1.268
+++ includes/form.inc	10 Apr 2008 15:11:04 -0000
@@ -1561,7 +1561,7 @@ function theme_password_confirm($element
 /**
  * Expand a password_confirm field into two text boxes.
  */
-function expand_password_confirm($element) {
+function form_process_password_confirm($element) {
   $element['pass1'] =  array(
     '#type' => 'password',
     '#title' => t('Password'),
@@ -1629,7 +1629,7 @@ function theme_date($element) {
 /**
  * Roll out a single date element.
  */
-function expand_date($element) {
+function form_process_date($element) {
   // Default to current date
   if (empty($element['#value'])) {
     $element['#value'] = array('day' => format_date(time(), 'custom', 'j'),
@@ -1706,7 +1706,7 @@ function weight_value(&$form) {
  * Roll out a single radios element to a list of radios,
  * using the options array as index.
  */
-function expand_radios($element) {
+function form_process_radios($element) {
   if (count($element['#options']) > 0) {
     foreach ($element['#options'] as $key => $choice) {
       if (!isset($element[$key])) {
@@ -1742,7 +1742,7 @@ function expand_radios($element) {
  *   None. Additional code is added to the header of the page using
  *   drupal_add_js.
  */
-function form_expand_ahah($element) {
+function form_process_ahah($element) {
   static $js_added = array();
   // Add a reasonable default event handler if none specified.
   if (isset($element['#ahah']['path']) && !isset($element['#ahah']['event'])) {
@@ -1880,7 +1880,7 @@ function theme_checkboxes($element) {
   }
 }
 
-function expand_checkboxes($element) {
+function form_process_checkboxes($element) {
   $value = is_array($element['#value']) ? $element['#value'] : array();
   $element['#tree'] = TRUE;
   if (count($element['#options']) > 0) {
@@ -2098,7 +2098,7 @@ function theme_password($element) {
 /**
  * Expand weight elements into selects.
  */
-function process_weight($element) {
+function form_process_weight($element) {
   for ($n = (-1 * $element['#delta']); $n <= $element['#delta']; $n++) {
     $weights[$n] = $n;
   }
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.69
diff -u -d -F^\s*function -r1.69 system.admin.inc
--- modules/system/system.admin.inc	10 Apr 2008 01:43:32 -0000	1.69
+++ modules/system/system.admin.inc	10 Apr 2008 15:11:07 -0000
@@ -728,7 +728,7 @@ function system_modules($form_state = ar
     '#default_value' => $status,
     '#options' => $options,
     '#process' => array(
-      'expand_checkboxes',
+      'form_process_checkboxes',
       'system_modules_disable',
     ),
     '#disabled_modules' => $disabled,
@@ -744,7 +744,7 @@ function system_modules($form_state = ar
       '#default_value' => $throttle,
       '#options' => $options,
       '#process' => array(
-        'expand_checkboxes',
+        'form_process_checkboxes',
         'system_modules_disable',
       ),
       '#disabled_modules' => array_merge($modules_required, array('throttle')),
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.596
diff -u -d -F^\s*function -r1.596 system.module
--- modules/system/system.module	10 Apr 2008 10:28:23 -0000	1.596
+++ modules/system/system.module	10 Apr 2008 15:11:08 -0000
@@ -187,7 +187,7 @@ function system_elements() {
     '#name' => 'op',
     '#button_type' => 'submit',
     '#executes_submit_callback' => TRUE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['button'] = array(
@@ -195,14 +195,14 @@ function system_elements() {
     '#name' => 'op',
     '#button_type' => 'submit',
     '#executes_submit_callback' => FALSE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['image_button'] = array(
     '#input' => TRUE,
     '#button_type' => 'submit',
     '#executes_submit_callback' => TRUE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
     '#return_value' => TRUE,
     '#has_garbage_value' => TRUE,
     '#src' => NULL,
@@ -213,19 +213,19 @@ function system_elements() {
     '#size' => 60,
     '#maxlength' => 128,
     '#autocomplete_path' => FALSE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['password'] = array(
     '#input' => TRUE,
     '#size' => 60,
     '#maxlength' => 128,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['password_confirm'] = array(
     '#input' => TRUE,
-    '#process' => array('expand_password_confirm'),
+    '#process' => array('form_process_password_confirm'),
   );
 
   $type['textarea'] = array(
@@ -233,50 +233,50 @@ function system_elements() {
     '#cols' => 60,
     '#rows' => 5,
     '#resizable' => TRUE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['radios'] = array(
     '#input' => TRUE,
-    '#process' => array('expand_radios'),
+    '#process' => array('form_process_radios'),
   );
 
   $type['radio'] = array(
     '#input' => TRUE,
     '#default_value' => NULL,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['checkboxes'] = array(
     '#input' => TRUE,
     '#tree' => TRUE,
-    '#process' => array('expand_checkboxes'),
+    '#process' => array('form_process_checkboxes'),
   );
 
   $type['checkbox'] = array(
     '#input' => TRUE,
     '#return_value' => 1,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['select'] = array(
     '#input' => TRUE,
     '#size' => 0,
     '#multiple' => FALSE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['weight'] = array(
     '#input' => TRUE,
     '#delta' => 10,
     '#default_value' => 0,
-    '#process' => array('process_weight', 'form_expand_ahah'),
+    '#process' => array('form_process_weight', 'form_process_ahah'),
   );
 
   $type['date'] = array(
     '#input' => TRUE,
     '#element_validate' => array('date_validate'),
-    '#process' => array('expand_date'),
+    '#process' => array('form_process_date'),
   );
 
   $type['file'] = array(
@@ -294,7 +294,7 @@ function system_elements() {
 
   $type['hidden'] = array(
     '#input' => TRUE,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['value'] = array(
@@ -310,7 +310,7 @@ function system_elements() {
     '#collapsible' => FALSE,
     '#collapsed' => FALSE,
     '#value' => NULL,
-    '#process' => array('form_expand_ahah'),
+    '#process' => array('form_process_ahah'),
   );
 
   $type['token'] = array(
