Index: wp-admin/css/colors-classic.dev.css
===================================================================
--- wp-admin/css/colors-classic.dev.css	(revision 20839)
+++ wp-admin/css/colors-classic.dev.css	(working copy)
@@ -729,7 +729,8 @@
 table.widefat span.spam a,
 #dashboard_recent_comments .delete a,
 #dashboard_recent_comments .trash a,
-#dashboard_recent_comments .spam a {
+#dashboard_recent_comments .spam a,
+#edittag .delete a {
 	color: #bc0b0b;
 }
 
@@ -842,7 +843,8 @@
 table.widefat .spam a:hover,
 #dashboard_recent_comments .delete a:hover,
 #dashboard_recent_comments .trash a:hover
-#dashboard_recent_comments .spam a:hover {
+#dashboard_recent_comments .spam a:hover,
+#edittag .delete a:hover {
 	color: #f00;
 }

Index: wp-admin/css/colors-fresh.dev.css
===================================================================
--- wp-admin/css/colors-fresh.dev.css	(revision 20839)
+++ wp-admin/css/colors-fresh.dev.css	(working copy)
@@ -710,7 +710,8 @@
 table.widefat span.spam a,
 #dashboard_recent_comments .delete a,
 #dashboard_recent_comments .trash a,
-#dashboard_recent_comments .spam a {
+#dashboard_recent_comments .spam a,
+#edittag .delete a {
 	color: #bc0b0b;
 }
 
@@ -888,7 +889,8 @@
 table.widefat .spam a:hover,
 #dashboard_recent_comments .delete a:hover,
 #dashboard_recent_comments .trash a:hover
-#dashboard_recent_comments .spam a:hover {
+#dashboard_recent_comments .spam a:hover,
+#edittag .delete a:hover {
 	color: #f00;
 }
 
Index: wp-admin/edit-tag-form.php
===================================================================
--- wp-admin/edit-tag-form.php	(revision 20839)
+++ wp-admin/edit-tag-form.php	(working copy)
@@ -87,7 +87,10 @@
 
 do_action($taxonomy . '_edit_form', $tag, $taxonomy);
 
-submit_button( __('Update') );
+submit_button( __('Update'), 'primary', NULL, false, NULL );
 ?>
+<span class="delete">
+	<a class="delete-tag" href="<?php echo wp_nonce_url( "edit-tags.php?action=delete&taxonomy=$taxonomy&tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) ?>"'><?php _e( 'Delete' ); ?></a>
+</span>
 </form>
 </div>
Index: wp-admin/edit-tags.php
===================================================================
--- wp-admin/edit-tags.php	(revision 20839)
+++ wp-admin/edit-tags.php	(working copy)
@@ -87,7 +87,9 @@
 
 	wp_delete_term( $tag_ID, $taxonomy );
 
+	$location = remove_query_arg( array( 'tag_ID', 'action', '_wpnonce' ) );
 	$location = add_query_arg( 'message', 2, $location );
+
 	wp_redirect( $location );
 	exit;
 
