Index: wp-includes/bookmark-template.php
===================================================================
--- wp-includes/bookmark-template.php	(revision 15490)
+++ wp-includes/bookmark-template.php	(working copy)
@@ -28,6 +28,8 @@
  *		available.
  * 'show_name' - Default is 0 (integer). Whether to show link name if
  *		available.
+ * 'show_feed' - Default is 0 (integer). Whether to show feed link if 
+ *              available. 
  * 'before' - Default is '<li>' (string). The html or text to prepend to each
  *		bookmarks.
  * 'after' - Default is '</li>' (string). The html or text to append to each
@@ -53,7 +55,8 @@
 		'show_updated' => 0, 'show_description' => 0,
 		'show_images' => 1, 'show_name' => 0,
 		'before' => '<li>', 'after' => '</li>', 'between' => "\n",
-		'show_rating' => 0, 'link_before' => '', 'link_after' => ''
+		'show_feed' => 0, 'show_rating' => 0,
+		'link_before' => '', 'link_after' => ''
 	);
 
 	$r = wp_parse_args( $args, $defaults );
@@ -121,7 +124,10 @@
 
 		if ( $show_description && '' != $desc )
 			$output .= $between . $desc;
-
+			
+		if ( $show_feed ) 
+			$output .= $between .  "<a class='feedlink' href='" .  sanitize_bookmark_field('link_feed', $bookmark->link_rss, $bookmark->link_id, 'display') . "'>feed</a>";
+			 
 		if ( $show_rating )
 			$output .= $between . sanitize_bookmark_field('link_rating', $bookmark->link_rating, $bookmark->link_id, 'display');
 
