Index: drush/apachesolr.drush.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr/drush/apachesolr.drush.inc,v
retrieving revision 1.1.2.13
diff -r1.1.2.13 apachesolr.drush.inc
45a46,51
>   $items['solr-index'] = array(
>     // the name of the function implementing your command.
>     'callback' => 'apachesolr_drush_solr_index',
>     // a short description of your command
>     'description' => dt('Reindexes content marked for (re)indexing.'),
>   );
80a87,88
>     case 'drush:solr-index':
>       return dt("Reindexes content marked for (re)indexing. If you want to reindex all content or content of a specific type, use solr-reindex first to mark that content.");
124a133,139
> function apachesolr_drush_solr_index() {
>   $path = drupal_get_path('module', 'apachesolr');
>   include_once($path . "/apachesolr.admin.inc");
>   apachesolr_batch_index_remaining();
>   drush_backend_batch_process();
> }
> 
