changeset 953:c1e8977783ed

[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.
author youngs
date Sun, 04 Aug 2002 00:05:48 +0000
parents c10d0c3f965f
children cb345077c98c
files lisp/ChangeLog lisp/lib-complete.el
diffstat 2 files changed, 6 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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)