From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier" Newsgroups: gmane.emacs.devel Subject: Re: info,bookmark and bzip2 Date: Fri, 07 Jun 2002 11:18:27 -0400 Sender: emacs-devel-admin@gnu.org Message-ID: <200206071518.g57FIRD09976@rum.cs.yale.edu> References: <20020605091708.6000BAA1@smtp.ether.antenova.co.uk> <200206070046.g570k5P25835@aztec.santafe.edu> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1023463320 30084 127.0.0.1 (7 Jun 2002 15:22:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 7 Jun 2002 15:22:00 +0000 (UTC) Cc: robert.thorpe@antenova.com, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17GLYu-0007p7-00 for ; Fri, 07 Jun 2002 17:22:00 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 17GLuL-00063o-00 for ; Fri, 07 Jun 2002 17:44:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17GLY0-0007Bi-00; Fri, 07 Jun 2002 11:21:04 -0400 Original-Received: from rum.cs.yale.edu ([128.36.229.169]) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 17GLVU-000703-00; Fri, 07 Jun 2002 11:18:28 -0400 Original-Received: (from monnier@localhost) by rum.cs.yale.edu (8.11.6/8.11.6) id g57FIRD09976; Fri, 7 Jun 2002 11:18:27 -0400 X-Mailer: exmh version 2.4 06/23/2000 with nmh-1.0.4 Original-To: Richard Stallman Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:4636 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:4636 > Does this patch make it work? > > *** bookmark.el.~1.59.~ Fri Dec 21 04:05:59 2001 > --- bookmark.el Thu Jun 6 18:41:39 2002 > *************** > *** 1078,1086 **** > --- 1078,1088 ---- > ((file-exists-p file) file) > ((file-exists-p (concat file ".Z")) (concat file ".Z")) > ((file-exists-p (concat file ".gz")) (concat file ".gz")) > + ((file-exists-p (concat file ".bz2")) (concat file ".bz2")) > ((file-exists-p (concat file ".z")) (concat file ".z")) > ((file-exists-p (concat file ".info")) (concat file ".info")) > ((file-exists-p (concat file ".info.gz")) (concat file ".info.gz")) > + ((file-exists-p (concat file ".info.bz2")) (concat file ".info.bz2")) > ((file-exists-p (concat file ".info.Z")) (concat file ".info.Z")) > ((file-exists-p (concat file ".info.z")) (concat file ".info.z")) > ((vc-backend file) file) ; maybe VC has it? Yuck! Can someone fix this code to use Info-suffix-list ? Stefan