? 1020906-differentiate_process_preprocess.patch
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.628
diff -u -p -r1.628 theme.inc
--- includes/theme.inc	4 Feb 2011 19:03:14 -0000	1.628
+++ includes/theme.inc	14 Feb 2011 19:48:48 -0000
@@ -2038,6 +2038,9 @@ function _theme_table_cell($cell, $heade
  * Adds a default set of helper variables for variable processors and templates.
  * This comes in before any other preprocess function which makes it possible to
  * be used in default theme implementations (non-overridden theme functions).
+ *
+ * For more detailed information, see theme().
+ *
  */
 function template_preprocess(&$variables, $hook) {
   global $user;
@@ -2115,6 +2118,9 @@ function _template_preprocess_default_va
 
 /**
  * A default process function used to alter variables as late as possible.
+ *
+ * For more detailed information, see theme().
+ *
  */
 function template_process(&$variables, $hook) {
   // Flatten out classes.
Index: modules/field/field.crud.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/field/field.crud.inc,v
retrieving revision 1.74
diff -u -p -r1.74 field.crud.inc
--- modules/field/field.crud.inc	2 Jan 2011 17:26:39 -0000	1.74
+++ modules/field/field.crud.inc	14 Feb 2011 19:07:22 -0000
@@ -635,12 +635,7 @@ function _field_write_instance($instance
 }
 
 /**
- * Reads a single instance record directly from the database.
- *
- * Generally, you should use the field_info_instance() instead.
- *
- * This function will not return deleted instances. Use
- * field_read_instances() instead for this purpose.
+ * Reads a single instance record through field_read_instances().
  *
  * @param $entity_type
  *   The type of entity to which the field is bound.
Index: modules/system/theme.api.php
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/theme.api.php,v
retrieving revision 1.5
diff -u -p -r1.5 theme.api.php
--- modules/system/theme.api.php	3 Jan 2011 18:03:54 -0000	1.5
+++ modules/system/theme.api.php	14 Feb 2011 19:47:35 -0000
@@ -100,6 +100,8 @@ function hook_form_system_theme_settings
  * It is called for all invocations of theme(), to allow modules to add to
  * or override variables for all theme hooks.
  *
+ * For more detailed information, see theme().
+ *
  * @param $variables
  *   The variables array (modify in place).
  * @param $hook
@@ -146,6 +148,8 @@ function hook_preprocess(&$variables, $h
  * hook. It should only be used if a module needs to override or add to the
  * theme preprocessing for a theme hook it didn't define.
  *
+ * For more detailed information, see theme().
+ *
  * @param $variables
  *   The variables array (modify in place).
  */
@@ -162,6 +166,8 @@ function hook_preprocess_HOOK(&$variable
  * It is called for all invocations of theme(), to allow modules to add to
  * or override variables for all theme hooks.
  *
+ * For more detailed information, see theme().
+ *
  * @param $variables
  *   The variables array (modify in place).
  * @param $hook
@@ -188,6 +194,8 @@ function hook_process(&$variables, $hook
  * hook. It should only be used if a module needs to override or add to the
  * theme processing for a theme hook it didn't define.
  *
+ * For more detailed information, see theme().
+ *
  * @param $variables
  *   The variables array (modify in place).
  */
