* Compile then run in JDE
@ 2007-01-27 7:59 Matthew Flaschen
2007-01-30 0:43 ` Matthew Flaschen
0 siblings, 1 reply; 2+ messages in thread
From: Matthew Flaschen @ 2007-01-27 7:59 UTC (permalink / raw)
To: emacs
[-- Attachment #1.1.1: Type: text/plain, Size: 1078 bytes --]
I've been trying to make a compile then run command for JDE. I.E. a
single command which would save, compile, then run. For now, I've just
been testing with a single file.
I've been unable to get it to run after the compile. I got it to:
(defun java-compile-then-run ()
"Saves, compiles and runs the current buffer, using JDE"
(interactive)
(basic-save-buffer)
(save-current-buffer
(jde-compile))
(jde-run))
That gives me the attached errors, starting with "Wrong number of
arguments" (Sorry, I couldn't figure out how to escape the error for
copying text). I copied that from the *Messages* buffer. To isolate
the problem, I simplified the function to:
(defun java-compile-then-run ()
"Saves, compiles and runs the current buffer, using JDE"
(interactive)
(jde-run))
To my surprise, it gave the same error. The command jde-run works, but
java-compile-then-run results in the "Wrong number of arguments
exception. Can anyone explain this? At the very least I would like to
get the dummy (second) function working.
Matthew Flaschen
[-- Attachment #1.1.2: emacsargerror.png --]
[-- Type: image/png, Size: 9845 bytes --]
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 252 bytes --]
[-- Attachment #2: Type: text/plain, Size: 152 bytes --]
_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Compile then run in JDE
2007-01-27 7:59 Compile then run in JDE Matthew Flaschen
@ 2007-01-30 0:43 ` Matthew Flaschen
0 siblings, 0 replies; 2+ messages in thread
From: Matthew Flaschen @ 2007-01-30 0:43 UTC (permalink / raw)
Cc: emacs
[-- Attachment #1: Type: text/plain, Size: 1440 bytes --]
Anyone have any ideas about this?
Thanks,
Matthew Flaschen
Matthew Flaschen wrote:
> I've been trying to make a compile then run command for JDE. I.E. a
> single command which would save, compile, then run. For now, I've just
> been testing with a single file.
>
> I've been unable to get it to run after the compile. I got it to:
>
> (defun java-compile-then-run ()
> "Saves, compiles and runs the current buffer, using JDE"
> (interactive)
> (basic-save-buffer)
> (save-current-buffer
> (jde-compile))
> (jde-run))
>
> That gives me the attached errors, starting with "Wrong number of
> arguments" (Sorry, I couldn't figure out how to escape the error for
> copying text). I copied that from the *Messages* buffer. To isolate
> the problem, I simplified the function to:
>
> (defun java-compile-then-run ()
> "Saves, compiles and runs the current buffer, using JDE"
> (interactive)
> (jde-run))
>
>
> To my surprise, it gave the same error. The command jde-run works, but
> java-compile-then-run results in the "Wrong number of arguments
> exception. Can anyone explain this? At the very least I would like to
> get the dummy (second) function working.
>
> Matthew Flaschen
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> help-gnu-emacs mailing list
> help-gnu-emacs@gnu.org
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
[-- Attachment #2: emacsargerror.png --]
[-- Type: image/png, Size: 9845 bytes --]
[-- Attachment #3: Type: text/plain, Size: 152 bytes --]
_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-01-30 0:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-27 7:59 Compile then run in JDE Matthew Flaschen
2007-01-30 0:43 ` Matthew Flaschen
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.