all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Re: using emacs under win2000
  2006-03-23  1:23 using emacs under win2000 Gary Weselle
@ 2006-03-22 18:46 ` Eli Zaretskii
       [not found] ` <mailman.8.1143053186.14015.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2006-03-22 18:46 UTC (permalink / raw)


> From: "Gary Weselle" <weselle_g@hotmain.com>
> Date: Wed, 22 Mar 2006 17:23:57 -0800
> 
> My emacs looks like this:
> 
> (load "C:/emacs-21.3/ess-5.2.12/lisp/ess-site")
> 
> (setq R "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")

The last one is the culprit, I think: you need to set the
_environment_ variable R, not an Emacs variable R.  Try this instead:

(setenv "R"  "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: using emacs under win2000
  2006-03-23 17:33   ` Gary Weselle
@ 2006-03-23  0:01     ` Kevin Rodgers
  0 siblings, 0 replies; 5+ messages in thread
From: Kevin Rodgers @ 2006-03-23  0:01 UTC (permalink / raw)


Gary Weselle wrote:
> "Eli Zaretskii" <eliz@gnu.org> wrote in message
> news:mailman.8.1143053186.14015.help-gnu-emacs@gnu.org...
> 
>>>From: "Gary Weselle" <weselle_g@hotmain.com>
>>>Date: Wed, 22 Mar 2006 17:23:57 -0800
>>>
>>>My emacs looks like this:
>>>
>>>(load "C:/emacs-21.3/ess-5.2.12/lisp/ess-site")
>>>
>>>(setq R "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>>
>>The last one is the culprit, I think: you need to set the
>>_environment_ variable R, not an Emacs variable R.  Try this instead:
>>
>>(setenv "R"  "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>>
>>
> 
> 
> that did not do it, the line in question is taken from
> http://ess.r-project.org/Manual/ess.html#Microsoft-Windows-installation

The name of the variable set in step 5 is inferior-R-program-name, not R.

-- 
Kevin Rodgers

^ permalink raw reply	[flat|nested] 5+ messages in thread

* using emacs under win2000
@ 2006-03-23  1:23 Gary Weselle
  2006-03-22 18:46 ` Eli Zaretskii
       [not found] ` <mailman.8.1143053186.14015.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Gary Weselle @ 2006-03-23  1:23 UTC (permalink / raw)


Hi

I hope some one could help with this.

Emacs-21.3 and R-2.2.1 and ESS-5.2.12 under window2000pro

My emacs looks like this:

(load "C:/emacs-21.3/ess-5.2.12/lisp/ess-site")

(setq R "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")

I am logged in as a user and not as admin.

I have HOME and R_USER set in the Environment Variables.



M-x R  gives

ESS [S ( R ) : Rtrem starting data directory? C:/emacs-21.3/bin/ <RET>

Searching for program: no such file or directory, Rterm





C-x f gives

Find file: C:\emacs-21.3\bin/

I would rather see C:\some-other-path\here



Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: using emacs under win2000
       [not found] ` <mailman.8.1143053186.14015.help-gnu-emacs@gnu.org>
@ 2006-03-23 17:33   ` Gary Weselle
  2006-03-23  0:01     ` Kevin Rodgers
  2006-03-23 17:45   ` Gary Weselle
  1 sibling, 1 reply; 5+ messages in thread
From: Gary Weselle @ 2006-03-23 17:33 UTC (permalink / raw)



"Eli Zaretskii" <eliz@gnu.org> wrote in message
news:mailman.8.1143053186.14015.help-gnu-emacs@gnu.org...
> > From: "Gary Weselle" <weselle_g@hotmain.com>
> > Date: Wed, 22 Mar 2006 17:23:57 -0800
> >
> > My emacs looks like this:
> >
> > (load "C:/emacs-21.3/ess-5.2.12/lisp/ess-site")
> >
> > (setq R "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>
> The last one is the culprit, I think: you need to set the
> _environment_ variable R, not an Emacs variable R.  Try this instead:
>
> (setenv "R"  "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>
>

that did not do it, the line in question is taken from
http://ess.r-project.org/Manual/ess.html#Microsoft-Windows-installation

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: using emacs under win2000
       [not found] ` <mailman.8.1143053186.14015.help-gnu-emacs@gnu.org>
  2006-03-23 17:33   ` Gary Weselle
@ 2006-03-23 17:45   ` Gary Weselle
  1 sibling, 0 replies; 5+ messages in thread
From: Gary Weselle @ 2006-03-23 17:45 UTC (permalink / raw)



"Eli Zaretskii" <eliz@gnu.org> wrote in message
news:mailman.8.1143053186.14015.help-gnu-emacs@gnu.org...
> > From: "Gary Weselle" <weselle_g@hotmain.com>
> > Date: Wed, 22 Mar 2006 17:23:57 -0800
> >
> > My emacs looks like this:
> >
> > (load "C:/emacs-21.3/ess-5.2.12/lisp/ess-site")
> >
> > (setq R "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>
> The last one is the culprit, I think: you need to set the
> _environment_ variable R, not an Emacs variable R.  Try this instead:
>
> (setenv "R"  "C:/Progra~1/R/R-2.2.1/bin/Rterm.exe")
>
>
just so that I am in line here, what is it looking for? it says data
directory, I don't have a directory named data under C:/Progra~1/R/*

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-03-23 17:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-23  1:23 using emacs under win2000 Gary Weselle
2006-03-22 18:46 ` Eli Zaretskii
     [not found] ` <mailman.8.1143053186.14015.help-gnu-emacs@gnu.org>
2006-03-23 17:33   ` Gary Weselle
2006-03-23  0:01     ` Kevin Rodgers
2006-03-23 17:45   ` Gary Weselle

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.