From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/35972 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: `C-c C-i' has stopped working because "The" was removed Date: 20 Apr 2001 22:52:01 -0400 Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035171637 6081 80.91.224.250 (21 Oct 2002 03:40:37 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:40:37 +0000 (UTC) Keywords: patch Return-Path: Original-Received: (qmail 20020 invoked by alias); 21 Apr 2001 02:52:04 -0000 Original-Received: (qmail 20015 invoked from network); 21 Apr 2001 02:52:02 -0000 Original-Received: from mesquite.slip.cs.cmu.edu (HELO cinnamon.vanillaknot.com) (128.2.207.11) by gnus.org with SMTP; 21 Apr 2001 02:52:02 -0000 Original-Received: (from karl@localhost) by cinnamon.vanillaknot.com (8.9.3/8.9.3) id WAA13658; Fri, 20 Apr 2001 22:52:01 -0400 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6 hR;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu User-Agent: Gnus/5.090003 (Oort Gnus v0.03) XEmacs/21.4 (Solid Vapor) Original-Lines: 20 Xref: main.gmane.org gmane.emacs.gnus.general:35972 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:35972 --=-=-= A couple weeks ago, Lars removed "The" from a bunch of info nodes. Now `C-c C-i' is throwing an error because of it. Signaling: (error "No such node: The Summary Buffer") signal(error ("No such node: The Summary Buffer")) cerror("No such node: %s" "The Summary Buffer") apply(cerror "No such node: %s" "The Summary Buffer") error("No such node: %s" "The Summary Buffer") byte-code("..." [beg afile aline qnode bufs anode search-forward "\n" nil t 1 re-search-backward throw foo delq mapcar get-file-buffer string-match "\\`<<.*>>\\'" format "\"%s\"\\|<<%s>>" "------ *File: *\\([^ ].*[^ ]\\) *Node: *\\([^ ].*[^ ]\\) *Line: *\\([0-9]+\\)" re-search-forward 2 string-to-int 3 Info-find-node (Info-find-node nodename "Top" t) ((error)) error "No such node: %s" pat2 pattern regexp found Info-annotations-path tryfile Info-current-node nodename] 7) Info-find-file-node("/home/karl/Emacs/Info/gnus" "The Summary Buffer" nil nil nil) Info-find-node("gnus" "The Summary Buffer" nil nil) Info-goto-node("(gnus)The Summary Buffer") #() call-interactively(gnus-info-find-node) A quick glance at gnus.el shows there are just two instances that need to be fixed, but I could have missed others if they occur elsewhere. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=gnus.el.diff Content-Description: remove \"The\" from C-c C-i selections --- lisp/gnus.el.~1~ Fri Apr 13 23:49:25 2001 +++ lisp/gnus.el Fri Apr 20 22:49:17 2001 @@ -58,7 +58,7 @@ ;; These belong to gnus-group.el. (defgroup gnus-group nil "Group buffers." - :link '(custom-manual "(gnus)The Group Buffer") + :link '(custom-manual "(gnus)Group Buffer") :group 'gnus) (defgroup gnus-group-foreign nil @@ -99,7 +99,7 @@ ;; These belong to gnus-sum.el. (defgroup gnus-summary nil "Summary buffers." - :link '(custom-manual "(gnus)The Summary Buffer") + :link '(custom-manual "(gnus)Summary Buffer") :group 'gnus) (defgroup gnus-summary-exit nil --=-=-=--