From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/47360 Path: main.gmane.org!not-for-mail From: TSUCHIYA Masatoshi Newsgroups: gmane.emacs.gnus.general Subject: byte-compile warning of pgg-snarf-keys Date: Wed, 23 Oct 2002 00:11:50 +0900 Sender: owner-ding@hpc.uh.edu Message-ID: <20021023001151I.1000@pine.kuee.kyoto-u.ac.jp> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035299550 18579 80.91.224.249 (22 Oct 2002 15:12:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 22 Oct 2002 15:12:30 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1840hn-0004p4-00 for ; Tue, 22 Oct 2002 17:12:28 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1840hp-0002r2-00; Tue, 22 Oct 2002 10:12:29 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 22 Oct 2002 10:13:13 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id KAA21704 for ; Tue, 22 Oct 2002 10:13:01 -0500 (CDT) Original-Received: (qmail 18513 invoked by alias); 22 Oct 2002 15:12:06 -0000 Original-Received: (qmail 18494 invoked from network); 22 Oct 2002 15:12:04 -0000 Original-Received: from pine.kuee.kyoto-u.ac.jp (130.54.208.130) by gnus.org with SMTP; 22 Oct 2002 15:12:04 -0000 Original-Received: (qmail 16742 invoked from network); 23 Oct 2002 00:11:55 +0900 Original-Received: from pine.kuee.kyoto-u.ac.jp (130.54.208.130) by pine.kuee.kyoto-u.ac.jp with SMTP; 23 Oct 2002 00:11:55 +0900 Original-To: ding@gnus.org Mail-Followup-To: ding@gnus.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-debian-linux-gnu) X-Dispatcher: impost version 0.99i-ssh (Nov. 24, 1999) Original-Lines: 36 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:47360 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:47360 --=-=-= Hi, I found byte-compile warnings as follows: While compiling pgg-snarf-keys in file /home/tsuchiya/work/elisp/oort-gnus/lisp/pgg.el: ** reference to free variable start ** reference to free variable end So, I commited the following change. --=-=-= Content-Type: text/x-patch Content-Disposition: inline --- CVS/Base/pgg.el 2002-10-22 23:41:57.000000000 +0900 +++ pgg.el 2002-10-22 23:45:04.000000000 +0900 @@ -305,7 +305,7 @@ (defun pgg-snarf-keys () "Import public keys in the current buffer." (interactive "") - (pgg-snarf-keys-region (or start (point-min)) (or end (point-max)))) + (pgg-snarf-keys-region (point-min) (point-max))) (defun pgg-lookup-key (string &optional type) (pgg-invoke "lookup-key" (or pgg-scheme pgg-default-scheme) string type)) --=-=-= Content-Disposition: inline -- TSUCHIYA Masatoshi --=-=-=--