# HG changeset patch
# User youngs
# Date 1028419548 0
# Node ID c1e8977783ed79bc6a43a6873c98eec9cdfabbbd
# Parent  c10d0c3f965f2456c56d82f9678f360476eca87c
[xemacs-hg @ 2002-08-04 00:05:43 by youngs]

2002-08-03  Steve Youngs  <youngs@xemacs.org>

	* lib-complete.el (find-library): Remove check for mule because
	decompression DOES work on Mule.

diff -r c10d0c3f965f -r c1e8977783ed lisp/ChangeLog
--- a/lisp/ChangeLog	Fri Aug 02 16:54:25 2002 +0000
+++ b/lisp/ChangeLog	Sun Aug 04 00:05:48 2002 +0000
@@ -1,3 +1,8 @@
+2002-08-03  Steve Youngs  <youngs@xemacs.org>
+
+	* lib-complete.el (find-library): Remove check for mule because
+	decompression DOES work on Mule.
+
 2002-05-29  Katsumi Yamaoka  <yamaoka@jpl.org>
 
 	* mule/japan-util.el (setup-japanese-environment-internal): Use
diff -r c10d0c3f965f -r c1e8977783ed lisp/lib-complete.el
--- a/lisp/lib-complete.el	Fri Aug 02 16:54:25 2002 +0000
+++ b/lisp/lib-complete.el	Sun Aug 04 00:05:48 2002 +0000
@@ -328,11 +328,7 @@
   (let ((path (if (or (null library) (equal library ""))
 		   nil
 		(locate-file library (or find-library-source-path load-path)
-			     ;; decompression doesn't work with Mule -slb
-			     ;; !!#### fix this
-			     (if (featurep 'mule)
-				 ":.el:.elc"
-			       ":.el:.el.gz:.el.Z:.elc")))))
+			       ":.el:.el.gz:.el.Z:.elc"))))
     (if path (funcall (if (fboundp display-function)
 			  display-function 'find-file)
 		      path codesys)