I can remove the "continue reading" links from automatic excerpts by adding these lines to functions.php:
`remove_filter( 'excerpt_more', 'twentyten_excerpt_more' );
add_filter ('excerpt_more', 'newspaper_excerpt_more' );
function newspaper_excerpt_more($more){return '';}
But I can't remove them from manual excerpts. Do I need to use another technique?