From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 19 18:37:15 2013 Received: (at submit) by debbugs.gnu.org; 19 Jun 2013 22:37:15 +0000 Received: from localhost ([127.0.0.1]:56623 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UpR06-0001ew-LO for submit@debbugs.gnu.org; Wed, 19 Jun 2013 18:37:15 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34388) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UpR03-0001eU-JG for submit@debbugs.gnu.org; Wed, 19 Jun 2013 18:37:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpQzx-0002EX-B1 for submit@debbugs.gnu.org; Wed, 19 Jun 2013 18:37:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-100.5 required=5.0 tests=BAYES_05, USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:53676) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpQzx-0002ET-6J for submit@debbugs.gnu.org; Wed, 19 Jun 2013 18:37:05 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36094) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpQzw-0006bt-4V for bug-gnu-emacs@gnu.org; Wed, 19 Jun 2013 18:37:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpQzt-0002Dg-A7 for bug-gnu-emacs@gnu.org; Wed, 19 Jun 2013 18:37:03 -0400 Received: from ps18281.dreamhost.com ([69.163.218.105]:52525 helo=ps18281.dreamhostps.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpQzt-0002DX-4Y for bug-gnu-emacs@gnu.org; Wed, 19 Jun 2013 18:37:01 -0400 Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id B34D2258B9E91C for ; Wed, 19 Jun 2013 15:36:59 -0700 (PDT) From: Juri Linkov To: bug-gnu-emacs@gnu.org Subject: Highlight visited links Organization: JURTA Date: Thu, 20 Jun 2013 01:28:48 +0300 Message-ID: <87r4fx20rj.fsf@mail.jurta.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Severity: wishlist Tags: patch Visiting a URL link from Info doesn't highlight it as visited. I'm afraid that adding a visited URL to the existing variable `Info-history' might break other functions that expect it containing only visited Info nodes in the format `(FILENAME NODENAME BUFFERPOS)'. So I created a new variable `Info-url-history': === modified file 'lisp/info.el' --- lisp/info.el 2013-06-17 23:57:07 +0000 +++ lisp/info.el 2013-06-19 22:28:22 +0000 @@ -50,6 +50,9 @@ (defvar Info-history-list nil "List of all Info nodes user has visited. Each element of the list is a list (FILENAME NODENAME).") +(defvar Info-url-history nil + "List of all URLs user has visited.") + (defcustom Info-history-skip-intermediate-nodes t "Non-nil means don't record intermediate Info nodes to the history. Intermediate Info nodes are nodes visited by Info internally in the process of @@ -3882,6 +3885,9 @@ (defun Info-try-follow-nearest-node (&op (cond ((setq node (Info-get-token (point) "[hf]t?tps?://" "\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)")) + (when Info-fontify-visited-nodes + (setq Info-url-history (cons node (remove node Info-url-history))) + (Info-fontify-node)) (browse-url node) (setq node t)) ((setq node (Info-get-token (point) "\\*note[ \n\t]+" @@ -4972,11 +4978,16 @@ (defun Info-fontify-node () ;; Fontify http and ftp references (goto-char (point-min)) - (when not-fontified-p + (when (or not-fontified-p fontify-visited-p) (while (re-search-forward "\\(https?\\|ftp\\)://[^ \t\n\"`({<>})']+" nil t) (add-text-properties (match-beginning 0) (match-end 0) - '(font-lock-face info-xref + `(font-lock-face + ,(if (and Info-fontify-visited-nodes + (member (buffer-substring-no-properties + (match-beginning 0) (match-end 0)) + Info-url-history)) + 'info-xref-visited 'info-xref) mouse-face highlight help-echo "mouse-2: go to this URL")))) From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 26 19:34:37 2013 Received: (at 14670) by debbugs.gnu.org; 26 Jun 2013 23:34:37 +0000 Received: from localhost ([127.0.0.1]:43898 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrzET-0007RU-7Y for submit@debbugs.gnu.org; Wed, 26 Jun 2013 19:34:37 -0400 Received: from ps18281.dreamhost.com ([69.163.218.105]:38377 helo=ps18281.dreamhostps.com) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UrzEQ-0007RJ-D9 for 14670@debbugs.gnu.org; Wed, 26 Jun 2013 19:34:35 -0400 Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id C05B1258B9E915 for <14670@debbugs.gnu.org>; Wed, 26 Jun 2013 16:34:32 -0700 (PDT) From: Juri Linkov To: 14670@debbugs.gnu.org Subject: Re: bug#14670: Highlight visited links Organization: JURTA References: <87r4fx20rj.fsf@mail.jurta.org> Date: Thu, 27 Jun 2013 02:27:42 +0300 In-Reply-To: <87r4fx20rj.fsf@mail.jurta.org> (Juri Linkov's message of "Thu, 20 Jun 2013 01:28:48 +0300") Message-ID: <87ehbojvv4.fsf@mail.jurta.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 14670 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) This patch adds the support for links in virtual Info nodes rendered by shr.el. A virtual Info node function can just call `shr-insert-document' and this patch supports the fontification and navigation for links added by the renderer. === modified file 'lisp/info.el' --- lisp/info.el 2013-05-27 22:42:11 +0000 +++ lisp/info.el 2013-06-24 22:30:15 +0000 @@ -3114,10 +3145,10 @@ (defun Info-next-reference (&optional re (old-pt (point)) (case-fold-search t)) (or (eobp) (forward-char 1)) - (or (Info-next-reference-or-link pat 'link) + (or (Info-next-reference-or-link pat 'shr-url) (progn (goto-char (point-min)) - (or (Info-next-reference-or-link pat 'link) + (or (Info-next-reference-or-link pat 'shr-url) (progn (goto-char old-pt) (user-error "No cross references in this node"))))) @@ -3141,10 +3172,10 @@ (defun Info-prev-reference (&optional re (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://") (old-pt (point)) (case-fold-search t)) - (or (Info-prev-reference-or-link pat 'link) + (or (Info-prev-reference-or-link pat 'shr-url) (progn (goto-char (point-max)) - (or (Info-prev-reference-or-link pat 'link) + (or (Info-prev-reference-or-link pat 'shr-url) (progn (goto-char old-pt) (user-error "No cross references in this node"))))) @@ -3863,6 +3919,8 @@ (defun Info-try-follow-nearest-node (&op If FORK is non-nil, it is passed to `Info-goto-node'." (let (node) (cond + ((and (setq node (get-text-property (point) 'shr-url)) + (not (eq node t))) + (Info-goto-node node fork)) ((setq node (Info-get-token (point) "[hf]t?tps?://" "\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)")) (browse-url node) @@ -4701,6 +4764,18 @@ (defun Info-fontify-node () (add-text-properties (1- (match-beginning 2)) (match-end 2) '(invisible t front-sticky nil rear-nonsticky t))))) + ;; Fontify links + (goto-char (point-min)) + (when (or not-fontified-p fontify-visited-p) + (let ((beg (next-single-property-change (point-min) 'shr-url)) + (end nil)) + (while (and beg (setq end (next-single-property-change beg 'shr-url))) + (add-text-properties beg end + `(font-lock-face info-xref + mouse-face highlight + help-echo "mouse-2: go to this node")) + (setq beg (next-single-property-change end 'shr-url))))) + ;; Fontify cross references (goto-char (point-min)) (when (or not-fontified-p fontify-visited-p) @@ -4969,7 +5053,7 @@ (defun Info-fontify-node () (while (re-search-forward "\\(([0-9]+)\\)" nil t) (add-text-properties (match-beginning 0) (match-end 0) `(font-lock-face info-xref - link t + shr-url t mouse-face highlight help-echo ,(if (< (point) limit) From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 26 22:41:51 2013 Received: (at 14670) by debbugs.gnu.org; 27 Jun 2013 02:41:51 +0000 Received: from localhost ([127.0.0.1]:44173 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Us29e-0004oM-OV for submit@debbugs.gnu.org; Wed, 26 Jun 2013 22:41:51 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:37309) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Us29c-0004o7-LY for 14670@debbugs.gnu.org; Wed, 26 Jun 2013 22:41:48 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av4EABK/CFFMCppA/2dsb2JhbABEvw4Xc4IfAQVWIxALNBIUGA0kiCTBLZEKA6R6gV6DEw X-IPAS-Result: Av4EABK/CFFMCppA/2dsb2JhbABEvw4Xc4IfAQVWIxALNBIUGA0kiCTBLZEKA6R6gV6DEw X-IronPort-AV: E=Sophos;i="4.84,565,1355115600"; d="scan'208";a="17265355" Received: from 76-10-154-64.dsl.teksavvy.com (HELO fmsmemgm.homelinux.net) ([76.10.154.64]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 26 Jun 2013 22:41:37 -0400 Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 3F119AE0BA; Wed, 26 Jun 2013 22:41:42 -0400 (EDT) From: Stefan Monnier To: Juri Linkov Subject: Re: bug#14670: Highlight visited links Message-ID: References: <87r4fx20rj.fsf@mail.jurta.org> <87ehbojvv4.fsf@mail.jurta.org> Date: Wed, 26 Jun 2013 22:41:42 -0400 In-Reply-To: <87ehbojvv4.fsf@mail.jurta.org> (Juri Linkov's message of "Thu, 27 Jun 2013 02:27:42 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 14670 Cc: 14670@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) > - (or (Info-next-reference-or-link pat 'link) > + (or (Info-next-reference-or-link pat 'shr-url) Why? Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 27 20:19:37 2013 Received: (at 14670) by debbugs.gnu.org; 28 Jun 2013 00:19:37 +0000 Received: from localhost ([127.0.0.1]:45837 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UsMPZ-0004Fu-35 for submit@debbugs.gnu.org; Thu, 27 Jun 2013 20:19:37 -0400 Received: from ps18281.dreamhost.com ([69.163.218.105]:44541 helo=ps18281.dreamhostps.com) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1UsMPW-0004Fd-8b for 14670@debbugs.gnu.org; Thu, 27 Jun 2013 20:19:34 -0400 Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id 99E7B258B9E915; Thu, 27 Jun 2013 17:19:31 -0700 (PDT) From: Juri Linkov To: Stefan Monnier Subject: Re: bug#14670: Highlight visited links Organization: JURTA References: <87r4fx20rj.fsf@mail.jurta.org> <87ehbojvv4.fsf@mail.jurta.org> Date: Fri, 28 Jun 2013 02:35:58 +0300 In-Reply-To: (Stefan Monnier's message of "Wed, 26 Jun 2013 22:41:42 -0400") Message-ID: <87wqpfdsnd.fsf@mail.jurta.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 14670 Cc: 14670@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) >> - (or (Info-next-reference-or-link pat 'link) >> + (or (Info-next-reference-or-link pat 'shr-url) > > Why? Actually there is no need to rename `link' to `shr-url' because shr.el is flexible enough to allow arbitrary text properties for links: (defun info-render-node (html) (let ((shr-external-rendering-functions '((a . info-tag-a)))) (shr-insert-document html))) (defun info-tag-a (cont) (let ((url (cdr (assq :href cont))) (start (point))) (shr-generic cont) (when url (add-text-properties start (point) (list 'link (shr-expand-url url)))))) So without renaming link text-props, the patch to support text-prop links in Info becomes shorter: === modified file 'lisp/info.el' --- lisp/info.el 2013-06-27 09:20:04 +0000 +++ lisp/info.el 2013-06-27 23:31:27 +0000 @@ -3863,6 +3919,8 @@ (defun Info-try-follow-nearest-node (&op If FORK is non-nil, it is passed to `Info-goto-node'." (let (node) (cond + ((and (setq node (get-text-property (point) 'link)) (not (eq node t))) + (Info-goto-node node fork)) ((setq node (Info-get-token (point) "[hf]t?tps?://" "\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)")) (browse-url node) @@ -4701,6 +4766,18 @@ (defun Info-fontify-node () (add-text-properties (1- (match-beginning 2)) (match-end 2) '(invisible t front-sticky nil rear-nonsticky t))))) + ;; Fontify links + (goto-char (point-min)) + (when not-fontified-p + (let ((beg (next-single-property-change (point-min) 'link)) + (end nil)) + (while (and beg (setq end (next-single-property-change beg 'link))) + (add-text-properties beg end + '(font-lock-face info-xref + mouse-face highlight + help-echo "mouse-2: go to this link")) + (setq beg (next-single-property-change end 'link))))) + ;; Fontify cross references (goto-char (point-min)) (when (or not-fontified-p fontify-visited-p) From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 23 23:56:59 2016 Received: (at 14670) by debbugs.gnu.org; 24 Feb 2016 04:56:59 +0000 Received: from localhost ([127.0.0.1]:42193 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYRVT-0008DT-82 for submit@debbugs.gnu.org; Tue, 23 Feb 2016 23:56:59 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:37412) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aYRVR-0008DM-He for 14670@debbugs.gnu.org; Tue, 23 Feb 2016 23:56:58 -0500 Received: from cpe-60-225-211-161.nsw.bigpond.net.au ([60.225.211.161] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aYRV3-0000vX-Qi; Wed, 24 Feb 2016 05:56:34 +0100 From: Lars Ingebrigtsen To: Juri Linkov Subject: Re: bug#14670: Highlight visited links References: <87r4fx20rj.fsf@mail.jurta.org> <87ehbojvv4.fsf@mail.jurta.org> <87wqpfdsnd.fsf@mail.jurta.org> Date: Wed, 24 Feb 2016 15:56:28 +1100 In-Reply-To: <87wqpfdsnd.fsf@mail.jurta.org> (Juri Linkov's message of "Fri, 28 Jun 2013 02:35:58 +0300") Message-ID: <87bn76hfk3.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aYRV3-0000vX-Qi X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1456894595.26627@1Hn7AHZuX1+pOBrDoKdPkg X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 14670 Cc: Stefan Monnier , 14670@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.0 (/) Juri Linkov writes: > So without renaming link text-props, the patch to support > text-prop links in Info becomes shorter: I tried applying the patch and then going to an Info node that had an URL, and I didn't really see any difference... Is this patch still applicable? > > === modified file 'lisp/info.el' > --- lisp/info.el 2013-06-27 09:20:04 +0000 > +++ lisp/info.el 2013-06-27 23:31:27 +0000 > @@ -3863,6 +3919,8 @@ (defun Info-try-follow-nearest-node (&op > If FORK is non-nil, it is passed to `Info-goto-node'." > (let (node) > (cond > + ((and (setq node (get-text-property (point) 'link)) (not (eq node t))) > + (Info-goto-node node fork)) > ((setq node (Info-get-token (point) "[hf]t?tps?://" > "\\([hf]t?tps?://[^ \t\n\"`({<>})']+\\)")) > (browse-url node) > @@ -4701,6 +4766,18 @@ (defun Info-fontify-node () > (add-text-properties (1- (match-beginning 2)) (match-end 2) > '(invisible t front-sticky nil rear-nonsticky t))))) > > + ;; Fontify links > + (goto-char (point-min)) > + (when not-fontified-p > + (let ((beg (next-single-property-change (point-min) 'link)) > + (end nil)) > + (while (and beg (setq end (next-single-property-change beg 'link))) > + (add-text-properties beg end > + '(font-lock-face info-xref > + mouse-face highlight > + help-echo "mouse-2: go to this link")) > + (setq beg (next-single-property-change end 'link))))) > + > ;; Fontify cross references > (goto-char (point-min)) > (when (or not-fontified-p fontify-visited-p) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 27 07:13:58 2019 Received: (at 14670) by debbugs.gnu.org; 27 Jun 2019 11:13:59 +0000 Received: from localhost ([127.0.0.1]:37514 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgSLm-00019Z-Ld for submit@debbugs.gnu.org; Thu, 27 Jun 2019 07:13:58 -0400 Received: from quimby.gnus.org ([80.91.231.51]:40194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgSLl-00019S-8a for 14670@debbugs.gnu.org; Thu, 27 Jun 2019 07:13:57 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hgSLg-0004Tp-AC; Thu, 27 Jun 2019 13:13:55 +0200 From: Lars Ingebrigtsen To: Juri Linkov Subject: Re: bug#14670: Highlight visited links References: <87r4fx20rj.fsf@mail.jurta.org> <87ehbojvv4.fsf@mail.jurta.org> <87wqpfdsnd.fsf@mail.jurta.org> <87bn76hfk3.fsf@gnus.org> Date: Thu, 27 Jun 2019 13:13:52 +0200 In-Reply-To: <87bn76hfk3.fsf@gnus.org> (Lars Ingebrigtsen's message of "Wed, 24 Feb 2016 15:56:28 +1100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Lars Ingebrigtsen writes: > Juri Linkov writes: > >> So without renaming link text-props, the patch to support >> text-prop links in Info becomes shorter: > > I tried applying the patch and then going to an In [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 14670 Cc: Stefan Monnier , 14670@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Lars Ingebrigtsen writes: > Juri Linkov writes: > >> So without renaming link text-props, the patch to support >> text-prop links in Info becomes shorter: > > I tried applying the patch and then going to an Info node that had an > URL, and I didn't really see any difference... Is this patch still > applicable? I asked that three years ago and got no response, so I'm closing this bug report. Please reopen if this is still an issue. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 27 07:14:04 2019 Received: (at control) by debbugs.gnu.org; 27 Jun 2019 11:14:04 +0000 Received: from localhost ([127.0.0.1]:37518 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgSLr-0001AM-UF for submit@debbugs.gnu.org; Thu, 27 Jun 2019 07:14:04 -0400 Received: from quimby.gnus.org ([80.91.231.51]:40216) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgSLp-00019i-Hp for control@debbugs.gnu.org; Thu, 27 Jun 2019 07:14:01 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hgSLn-0004U1-24 for control@debbugs.gnu.org; Thu, 27 Jun 2019 13:14:01 +0200 Date: Thu, 27 Jun 2019 13:13:58 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14670 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 14670 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 14670 quit From unknown Sat Jun 21 03:25:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 25 Jul 2019 11:24:11 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator