From xemacs-m  Sun Dec 29 19:03:08 1996
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
          by xemacs.cs.uiuc.edu (8.8.4/8.8.4) with ESMTP
	  id TAA12117 for <xemacs-beta@xemacs.org>; Sun, 29 Dec 1996 19:03:07 -0600 (CST)
Received: (from steve@localhost)
          by altair.xemacs.org (8.8.4/8.8.4)
	  id RAA01145; Sun, 29 Dec 1996 17:13:37 -0800
Sender: steve@xemacs.org
To: xemacs-beta@xemacs.org
Subject: Re: tm + XEmacs byte compilation errors
References: <199612291243.EAA06119@xemacs.eng.sun.com>
X-Url: http://www.miranova.com/%7Esteve/
Mail-Copies-To: never
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
In-Reply-To: Martin Buchholz's message of Sun, 29 Dec 1996 04:43:56 -0800
Mime-Version: 1.0 (generated by tm-edit 7.100)
Content-Type: text/plain; charset=US-ASCII
Date: 29 Dec 1996 17:13:36 -0800
Message-ID: <m2681kkf5r.fsf@altair.xemacs.org>
Lines: 45
X-Mailer: Red Gnus v0.72/XEmacs 20.0

>>>>> "Martin" == Martin Buchholz <mrb@eng.sun.com> writes:

Martin> The newly integrated file tm-edit-tipgp.el fails to compile in the
Martin> TM-integrated XEmacs 20.0.

Martin> Martin

Martin> /local/mrb/xemacs/build/sparc-S2-mule/src/xemacs -batch -q -no-site-file -f batch-byte-compile lisp/./tm/tm-edit-tipgp.el
Martin> Compiling /home/mrb/x/tm/build/sparc-S2-mule/lisp/tm/tm-edit-tipgp.el...
Martin> While compiling toplevel forms in file /home/mrb/x/tm/build/sparc-S2-mule/lisp/tm/tm-edit-tipgp.el:
Martin>   !! File error (("Cannot open load file" "tinypgpa.el"))
Martin> Done

tinypgpa.el is not in the XEmacs distribution and basically overlaps
the capabilities of the mailcrypt package, with some features
missing.

We either need to get rid of this file, include tinypgpa.el, or use
the attached patch.  My vote is to use the patch to allow add-on use
of tinypgpa.el, since it didn't sound like a complete enough
replacement for mailcrypt the last time I looked at it.

Index: tm-edit-tipgp.el
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lisp/tm/tm-edit-tipgp.el,v
retrieving revision 1.1
diff -u -r1.1 tm-edit-tipgp.el
--- tm-edit-tipgp.el	1996/12/28 21:12:31	1.1
+++ tm-edit-tipgp.el	1996/12/30 01:07:45
@@ -25,7 +25,8 @@
 
 ;;; Code:
 
-(require 'tinypgpa.el)
+(when (locate-library "tinypgpa")
+  (require 'tinypgpa.el))
 
 (defun tm:tipgp-process-region (result-buffer boundary)
   (let ((obuf (current-buffer))

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.
"That Bill Clinton.  He probably doesn't know how to log on to the
Internet."  -- Rush Limbaugh, noted Computer Expert

