Paul Kinnucan wrote:
>Evan Easton writes:
> > When I compile with 2.2.9beta2 I get the following message "Wrong type
> > argument: sequencep, t"
> >
> > The failed expression in the back trace is as follows:
> >
> > Signaling: (wrong-type-argument sequencep t)
> > mapconcat((lambda (arg) arg) ("-classpath"
> >
>"/home/easton/eeaston/ree_r62_dev/Windchill/codebase:/home/easton/eeaston/ree_r62_dev/Windchill/lib/CommonCore.jar:/home/easton/eeaston/ree_r62_dev/Windchill/lib/CoreDependencies.jar:/home/easton/eeaston/ree_r62_dev/Windchill/lib/SystemGeneration.jar:/home/easton/eeaston/ree_r62_dev/Windchill/lib/UpgradeTools.jar:/home/easton/eeaston/ree_r62_dev/Windchill/lib/wtbeans.jar"
>
> > t "-d" "/home/easton/eeaston/ree_r62_dev/Windchill/codebase") " ")
>^^^^^^^^
>What is the "t" argument?
>
I was wondering what the "t" argument was as well. I don't seem to have
a stray "t" in any of my jde variables.
>It appears to be a regression bug in the compiler command-line argument generation
>code, which was revised extensively for this release.
>
>What jde-compile-option variables have you customized?
>
I don't think I have any jde-compile-options vars customized either
other than jde-compile-option-directory. Here's the project file:
(jde-project-file-version "1.0")
(jde-set-variables
'(jde-project-name "R62 Windchill Development")
'(jde-global-classpath (quote
("/home/easton/eeaston/ree_r62_dev/Windchill/codebase"
"/home/easton/eeaston/ree_r62_dev/Windchill/lib")))
'(jde-jdk (quote ("1.3.1")))
'(jde-compile-option-directory
"/home/easton/eeaston/ree_r62_dev/Windchill/codebase")
'(jde-db-source-directories (quote
("/home/easton/eeaston/ree_r62_dev/Windchill/src")))
'(jde-run-application-class "wt.method.MethodServerMain")
'(jde-help-docsets (quote (("javadoc" "/opt/jdk1.3.1/docs/api" nil)
("javadoc"
"http://windchillweb.mn.ptc.com/javadoc/Windchill_R6/docs/api/" nil)))))
and here are all my jde related settings from my .emacs:
'(jde-help-docsets (quote (("javadoc" "/opt/jdk1.3.1/docs/api" nil))))
'(jde-gen-k&r nil)
'(jde-jdk (quote ("1.3.1")))
'(jde-jdk-doc-url
"http://www.javasoft.com/products/jdk/1.3/docs/index.html")
'(jde-global-classpath (quote ("~/libs/xalan-j_2_2_D10/bin/xalan.jar"
"~/libs/xalan-j_2_2_D10/bin/xerces.jar" "." "~/libs/Saxon-6.3/saxon.jar")))
'(jde-bug-jpda-directory "~/elisp/JDPA-1.0")
'(jde-bug-vm-includes-jpda-p t)
'(jde-jdk-registry (quote (("1.3.1" . "/opt/jdk1.3.1") ("1.3.0_02" .
"/opt/jdk1.3.0_02"))))
'(jde-run-classic-mode-vm t)
Evan