Re: Avoid JDEE to shadow standard libraries

2004-05-03 Thread Jason Rumney
David PONCE [EMAIL PROTECTED] writes: + (condition-case nil + ;; If the library if available, use it. + (require feature) + (error + ;; Try to use the one from the JDEE's distribution. + (require feature (format jde-%s feature) It might be cleaner to use:

Re: Avoid JDEE to shadow standard libraries

2004-05-03 Thread David Ponce
Jason Rumney wrote: David PONCE [EMAIL PROTECTED] writes: + (condition-case nil + ;; If the library if available, use it. + (require feature) + (error + ;; Try to use the one from the JDEE's distribution. + (require feature (format jde-%s feature) It might be

RE: Avoid JDEE to shadow standard libraries

2004-05-03 Thread Latchezar Dimitrov
To: [EMAIL PROTECTED] Cc: Paul Kinnucan; jdee Subject: Re: Avoid JDEE to shadow standard libraries David PONCE [EMAIL PROTECTED] writes: + (condition-case nil + ;; If the library if available, use it. + (require feature) + (error + ;; Try to use the one from