? includes/table.inc
Index: includes/drush.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/includes/drush.inc,v
retrieving revision 1.198
diff -u -p -r1.198 drush.inc
--- includes/drush.inc	2 Feb 2011 05:04:04 -0000	1.198
+++ includes/drush.inc	3 Feb 2011 22:15:36 -0000
@@ -869,13 +869,13 @@ function drush_confirm($msg, $indent = 0
   print str_repeat(' ', $indent) . (string)$msg . " (y/n): ";
 
   // Automatically accept confirmations if the --yes argument was supplied.
-  if (drush_get_context('DRUSH_AFFIRMATIVE')) {
-    print "y\n";
+  if (drush_get_context('DRUSH_AFFIRMATIVE', FALSE)) {
+    print "yes\n";
     return TRUE;
   }
   // Automatically cancel confirmations if the --no argument was supplied.
-  elseif (drush_get_context('DRUSH_NEGATIVE')) {
-    print "n\n";
+  elseif (drush_get_context('DRUSH_NEGATIVE', FALSE)) {
+    print "no\n";
     return FALSE;
   }
   // See http://drupal.org/node/499758 before changing this.
