Arc Forumnew | comments | leaders | submitlogin
2 points by zck 2892 days ago | link | parent

I'm a big Emacs fan. I'll check this out when I'm home.


3 points by archie 2889 days ago | link

No answer, huh? It's really an annoying problem...

-----

2 points by zck 2889 days ago | link

Ah, sorry I missed that. Right now (on Linux), I'm not even getting as far as you are. Upon M-x run-arc, I'm getting this error:

    emacs: /home/zck/programs/arc/arc3.1/arc.sh: Exec format error

    Process arc exited abnormally with code 126

-----

2 points by archie 2888 days ago | link

Hmmm, interesting. But I don't have any problem on my linux machine, only Windows is problematic. Here's mine .emacs setup on linux:

  (add-to-list 'load-path "~/.racket/6.4/pkgs/anarki/extras")
  (autoload 'arc-mode "arc"
    "Major mode for editing Arc." t)
  (add-to-list 'auto-mode-alist '("\\.arc$" . arc-mode))
  (setq arc-program-name "~/.racket/6.4/pkgs/anarki/arc -n")
  (add-hook 'inferior-arc-mode-hook
  	    (lambda ()
	      (set (make-local-variable 'comint-use-prompt-regexp) t)
	      (set (make-local-variable 'comint-prompt-read-only) t)))

-----

1 point by zck 2886 days ago | link

Oh, weird. Then I'm less able to help you, as I don't have a Windows computer. Sorry about that.

-----

1 point by akkartik 2886 days ago | link

Are you able to get inferior-lisp working on Windows? Maybe the appropriate forum could help with any gotchas there?

If you do figure this out don't forget to come back and tell us!

-----