unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Chong Yidong <cyd@stupidchicken.com>
Cc: emacs-devel@gnu.org
Subject: Re: Slow Info startup
Date: Tue, 29 Nov 2005 21:41:35 -0500	[thread overview]
Message-ID: <87d5kiq2lc.fsf@stupidchicken.com> (raw)
In-Reply-To: <878xv6zwqa.fsf@stupidchicken.com> (Chong Yidong's message of "Tue, 29 Nov 2005 21:38:05 -0500")

Gah... shouldn't have been sending emails while hacking on longlines.
Sorry about that, here's the real patch.

*** emacs/lisp/info.el.~1.463.~	2005-11-29 15:07:25.000000000 -0500
--- emacs/lisp/info.el	2005-11-29 21:22:28.000000000 -0500
***************
*** 3800,3816 ****
                                               (and (not (equal (match-string 4) ""))
                                                    (match-string 4))
                                               (match-string 2)))))
!                                  (file Info-current-file)
                                   (hl Info-history-list)
                                   res)
                              (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node)
!                                 (setq file (Info-find-file (match-string 1 node) t)
                                        node (if (equal (match-string 2 node) "")
                                                 "Top"
                                               (match-string 2 node))))
  			    (while hl
  			      (if (and (string-equal node (nth 1 (car hl)))
! 				       (string-equal file (nth 0 (car hl))))
  				  (setq res (car hl) hl nil)
  				(setq hl (cdr hl))))
                              res))) 'info-xref-visited 'info-xref))
--- 3800,3817 ----
                                               (and (not (equal (match-string 4) ""))
                                                    (match-string 4))
                                               (match-string 2)))))
!                                  (file (file-name-nondirectory Info-current-file))
                                   (hl Info-history-list)
                                   res)
                              (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node)
!                                 (setq file (match-string 1 node)
                                        node (if (equal (match-string 2 node) "")
                                                 "Top"
                                               (match-string 2 node))))
  			    (while hl
  			      (if (and (string-equal node (nth 1 (car hl)))
! 				       (string-equal file (file-name-nondirectory
! 							   (nth 0 (car hl)))))
  				  (setq res (car hl) hl nil)
  				(setq hl (cdr hl))))
                              res))) 'info-xref-visited 'info-xref))
***************
*** 3905,3921 ****
                              (let ((node (if (equal (match-string 3) "")
                                              (match-string 1)
                                            (match-string 3)))
!                                   (file Info-current-file)
                                    (hl Info-history-list)
                                    res)
                                (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node)
!                                   (setq file (Info-find-file (match-string 1 node) t)
!                                         node (if (equal (match-string 2 node) "")
                                                   "Top"
                                                 (match-string 2 node))))
  			      (while hl
  				(if (and (string-equal node (nth 1 (car hl)))
! 					 (string-equal file (nth 0 (car hl))))
  				    (setq res (car hl) hl nil)
  				  (setq hl (cdr hl))))
                                res))) 'info-xref-visited 'info-xref)))
--- 3906,3923 ----
                              (let ((node (if (equal (match-string 3) "")
                                              (match-string 1)
                                            (match-string 3)))
!                                   (file (file-name-nondirectory Info-current-file))
                                    (hl Info-history-list)
                                    res)
                                (if (string-match "(\\([^)]+\\))\\([^)]*\\)" node)
!                                   (setq file (match-string 1 node)
! 					node (if (equal (match-string 2 node) "")
                                                   "Top"
                                                 (match-string 2 node))))
  			      (while hl
  				(if (and (string-equal node (nth 1 (car hl)))
! 					 (string-equal file (file-name-nondirectory 
! 							     (nth 0 (car hl)))))
  				    (setq res (car hl) hl nil)
  				  (setq hl (cdr hl))))
                                res))) 'info-xref-visited 'info-xref)))

  reply	other threads:[~2005-11-30  2:41 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-30  1:40 Slow Info startup Katsumi Yamaoka
2005-11-30  2:38 ` Chong Yidong
2005-11-30  2:41   ` Chong Yidong [this message]
2005-11-30  2:48   ` Juri Linkov
2005-11-30  3:19   ` Katsumi Yamaoka
2005-12-01  6:05   ` Richard M. Stallman
2005-12-01 21:47     ` Juri Linkov
2005-12-01 22:46       ` Chong Yidong
2005-12-02  0:03         ` Juri Linkov
2005-12-02 18:21       ` Richard M. Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d5kiq2lc.fsf@stupidchicken.com \
    --to=cyd@stupidchicken.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).