diff lisp/lib-complete.el @ 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 943eaba38521
children 37bdd24225ef
line wrap: on
line diff
--- 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)