From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, T_RP_MATCHES_RCVD shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id F26DA1F7DF for ; Sun, 13 Sep 2015 23:35:25 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 4/4] view: jump to anchor of current message on References Date: Sun, 13 Sep 2015 23:35:22 +0000 Message-Id: <20150913233522.8343-5-e@80x24.org> In-Reply-To: <20150913233522.8343-1-e@80x24.org> References: <20150913233522.8343-1-e@80x24.org> List-Id: Otherwise it could be a bit disorienting to jump to the first message in the thread without navigation context. --- lib/PublicInbox/View.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index aaab3b2..65bc2f8 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -436,7 +436,7 @@ sub headers_to_html_header { if ($srch) { if ($header_obj->header('In-Reply-To') || $header_obj->header('References')) { - $rv .= "" . + $rv .= "" . "References: [expand]\n"; } -- EW