I'm glad to see all of the activity lately, but I had this one too and spent time fixing before having the benefit of this patch.
We all need to make sure we test the code we're committing to the repository as we're all using the same branch. If development continues at this rate, we'll need to create a patches branch and start merging so we can keep something more stable. Thanks all, for your efforts. Bryan Waite writes: > I was trying out the 2.4.0 branch tonight, and noticed that some of > the nested lists in jde-help-docsets were trying to be evaluated as > functions, which prevented jdee from starting. > I made a quick fix, that I've tested with emacs 23.0.94.1 on Ubuntu > linux. The lists could also be quoted, instead of using (list ...), if > that seems better. > Index: lisp/jde-help.el > =================================================================== > --- lisp/jde-help.el (revision 100) > +++ lisp/jde-help.el (working copy) > @@ -32,19 +32,19 @@ > (list (list "JDK API" > "http://java.sun.com/javase/6/docs/api" > nil) > - ("User (javadoc)" > + (list "User (javadoc)" > "http://static.springsource.org/spring/docs/3.0.x/javadoc-api/" > nil) > - ("User (javadoc)" > + (list "User (javadoc)" > "http://commons.apache.org/sandbox/functor/apidocs/" > nil) > - ("User (javadoc)" > + (list "User (javadoc)" > "https://www.hibernate.org/hib_docs/v3/api" > nil) > - ("User (javadoc)" > + (list "User (javadoc)" > "http://acegisecurity.org/acegi-security/apidocs" > nil) > - ("User (javadoc)" > + (list "User (javadoc)" > "http://wicket.apache.org/docs/1.4" > nil)) > "*Lists collections of HTML files documenting Java classes. > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. > http://p.sf.net/sfu/bobj-july_______________________________________________ > jdee-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/jdee-users -- Paul Landes [email protected] ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ jdee-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jdee-users
