all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* pwd (eshell) in Emacs 24.0.92
@ 2011-12-30  1:28 Rajanikanth Jammalamadaka
  2011-12-30  9:20 ` Andreas Röhler
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Rajanikanth Jammalamadaka @ 2011-12-30  1:28 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

Hi

I built Emacs 24.0.92 on Suse Linux 10.2 (64-bit). When I start up an
eshell (using M-x eshell)
and type pwd, it displays the current directory but it does not show me the
prompt back.
I have to press the return key again for emacs to show me the prompt.

Did anybody else see this?

Also, what is the best way to tell emacs to not make backup files?

Thanks,
Raj

[-- Attachment #2: Type: text/html, Size: 428 bytes --]

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

* Re: pwd (eshell) in Emacs 24.0.92
  2011-12-30  1:28 pwd (eshell) in Emacs 24.0.92 Rajanikanth Jammalamadaka
@ 2011-12-30  9:20 ` Andreas Röhler
  2011-12-30  9:38 ` Peter Dyballa
       [not found] ` <mailman.905.1325237895.15002.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 11+ messages in thread
From: Andreas Röhler @ 2011-12-30  9:20 UTC (permalink / raw)
  To: help-gnu-emacs

Am 30.12.2011 02:28, schrieb Rajanikanth Jammalamadaka:
> Hi
>
> I built Emacs 24.0.92 on Suse Linux 10.2 (64-bit). When I start up an
> eshell (using M-x eshell)
> and type pwd, it displays the current directory but it does not show me the
> prompt back.

not so with Suse11.4
Linux 2.6.37.6-0.9-default #1 SMP 2011-10-19 22:33:27 +0200 i686 i686 
i386 GNU/Linux

> I have to press the return key again for emacs to show me the prompt.
>
> Did anybody else see this?
>
> Also, what is the best way to tell emacs to not make backup files?
>
> Thanks,
> Raj
>




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

* Re: pwd (eshell) in Emacs 24.0.92
  2011-12-30  1:28 pwd (eshell) in Emacs 24.0.92 Rajanikanth Jammalamadaka
  2011-12-30  9:20 ` Andreas Röhler
@ 2011-12-30  9:38 ` Peter Dyballa
       [not found] ` <mailman.905.1325237895.15002.help-gnu-emacs@gnu.org>
  2 siblings, 0 replies; 11+ messages in thread
From: Peter Dyballa @ 2011-12-30  9:38 UTC (permalink / raw)
  To: Rajanikanth Jammalamadaka; +Cc: help-gnu-emacs


Am 30.12.2011 um 02:28 schrieb Rajanikanth Jammalamadaka:

> When I start up an eshell (using M-x eshell)

Try also without customisation, i.e.

	--no-init-file, -q          load neither ~/.emacs nor default.el
	--no-site-file              do not load site-start.el
	--no-site-lisp, -nsl        do not add site-lisp directories to load-path
	--quick, -Q                 equivalent to:
	                              -q --no-site-file --no-site-lisp --no-splash

Could be you have something set which interferes with this eshell version.

--
Greetings

  Pete

When confronted with actual numbers, a mathematician is at a loss.
				– Steffen Hokland




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

* Re: pwd (eshell) in Emacs 24.0.92
       [not found] ` <mailman.905.1325237895.15002.help-gnu-emacs@gnu.org>
@ 2012-06-26 19:28   ` rajanikanth
       [not found]   ` <mailman.3522.1340738932.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 11+ messages in thread
From: rajanikanth @ 2012-06-26 19:28 UTC (permalink / raw)
  To: gnu.emacs.help; +Cc: help-gnu-emacs

On Friday, 30 December 2011 04:38:09 UTC-5, Peter Dyballa  wrote:
> Am 30.12.2011 um 02:28 schrieb Rajanikanth Jammalamadaka:
> 
> > When I start up an eshell (using M-x eshell)
> 
> Try also without customisation, i.e.
> 
> 	--no-init-file, -q          load neither ~/.emacs nor default.el
> 	--no-site-file              do not load site-start.el
> 	--no-site-lisp, -nsl        do not add site-lisp directories to load-path
> 	--quick, -Q                 equivalent to:
> 	                              -q --no-site-file --no-site-lisp --no-splash
> 
> Could be you have something set which interferes with this eshell version.
> 
> --
> Greetings
> 
>   Pete
> 
> When confronted with actual numbers, a mathematician is at a loss.
> 				– Steffen Hokland

Hi

Just found out that the files from lisp/eshell directory are not getting loaded.

~/EM-L/emacs-24.1-release/lisp/eshell $ which ls
~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/ls

~/EM-L/emacs-24.1-release/lisp/eshell $ which pwd
~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/pwd

Did anybody else see this?

I am currently using emacs-24.1.

Thanks,
Raj



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

* Re: pwd (eshell) in Emacs 24.0.92
       [not found]   ` <mailman.3522.1340738932.855.help-gnu-emacs@gnu.org>
@ 2012-06-26 23:58     ` John Wiegley
  2012-06-27 14:27       ` rajanikanth
  0 siblings, 1 reply; 11+ messages in thread
From: John Wiegley @ 2012-06-26 23:58 UTC (permalink / raw)
  To: help-gnu-emacs

>>>>> rajanikanth  <rajanikanth@gmail.com> writes:

> Just found out that the files from lisp/eshell directory are not getting
> loaded.

> ~/EM-L/emacs-24.1-release/lisp/eshell $ which ls
> ~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/ls

> ~/EM-L/emacs-24.1-release/lisp/eshell $ which pwd
> ~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/pwd

> Did anybody else see this?

> I am currently using emacs-24.1.

I'm not seeing this.  What is your load-path, what is your OS?

John


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

* Re: pwd (eshell) in Emacs 24.0.92
  2012-06-26 23:58     ` John Wiegley
@ 2012-06-27 14:27       ` rajanikanth
  2012-06-28  8:14         ` John Wiegley
       [not found]         ` <mailman.3623.1340871292.855.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 11+ messages in thread
From: rajanikanth @ 2012-06-27 14:27 UTC (permalink / raw)
  To: help-gnu-emacs

On Tuesday, 26 June 2012 19:58:48 UTC-4, John Wiegley  wrote:
> >>>>> rajanikanth  writes:
> 
> > Just found out that the files from lisp/eshell directory are not getting
> > loaded.
> 
> > ~/EM-L/emacs-24.1-release/lisp/eshell $ which ls
> > ~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/ls
> 
> > ~/EM-L/emacs-24.1-release/lisp/eshell $ which pwd
> > ~/EM-L/emacs-24.1-release/lisp/eshell $ /bin/pwd
> 
> > Did anybody else see this?
> 
> > I am currently using emacs-24.1.
> 
> I'm not seeing this.  What is your load-path, what is your OS?
> 
> John

Hi John,

Here is my load-path:

("/home/raj/EM-L/emacs-24.1-release/lisp/eshell" "/home/raj/CS/cscope-15.7a/contrib/xcscope" "/home/raj/.emacs.d" "/home/raj/.emacs.d/plugins" "/home/raj/EM-24-release/share/emacs/24.1/site-lisp" "/h\
ome/raj/EM-24-release/share/emacs/site-lisp" "/home/raj/EM-24-release/share/emacs/24.1/lisp" "/home/raj/EM-24-release/share/emacs/24.1/lisp/vc" "/home/raj/EM-24-release/share/emacs/24.1/lisp/url" "/h\
ome/raj/EM-24-release/share/emacs/24.1/lisp/textmodes" "/home/raj/EM-24-release/share/emacs/24.1/lisp/progmodes" "/home/raj/EM-24-release/share/emacs/24.1/lisp/play" "/home/raj/EM-24-release/share/em\
acs/24.1/lisp/org" "/home/raj/EM-24-release/share/emacs/24.1/lisp/nxml" "/home/raj/EM-24-release/share/emacs/24.1/lisp/net" "/home/raj/EM-24-release/share/emacs/24.1/lisp/mh-e" "/home/raj/EM-24-relea\
se/share/emacs/24.1/lisp/mail" "/home/raj/EM-24-release/share/emacs/24.1/lisp/language" "/home/raj/EM-24-release/share/emacs/24.1/lisp/international" "/home/raj/EM-24-release/share/emacs/24.1/lisp/gn\
us" "/home/raj/EM-24-release/share/emacs/24.1/lisp/eshell" "/home/raj/EM-24-release/share/emacs/24.1/lisp/erc" "/home/raj/EM-24-release/share/emacs/24.1/lisp/emulation" "/home/raj/EM-24-release/share\
/emacs/24.1/lisp/emacs-lisp" "/home/raj/EM-24-release/share/emacs/24.1/lisp/cedet" "/home/raj/EM-24-release/share/emacs/24.1/lisp/calendar" "/home/raj/EM-24-release/share/emacs/24.1/lisp/calc" "/home\
/raj/EM-24-release/share/emacs/24.1/lisp/obsolete" "/home/raj/EM-24-release/share/emacs/24.1/leim")

and here is the OS info:
~ $ cat /etc/SuSE-release
SUSE Linux Enterprise Server 10 (x86_64)
VERSION = 10
PATCHLEVEL = 2
~ $ uname -a
Linux  2.6.16.60-0.39.3-smp #1 SMP Mon May 11 11:46:34 UTC 2009 x86_64 x86_64 x86_64 GNU/Linux

Thanks,
Raj



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

* Re: pwd (eshell) in Emacs 24.0.92
  2012-06-27 14:27       ` rajanikanth
@ 2012-06-28  8:14         ` John Wiegley
       [not found]         ` <mailman.3623.1340871292.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 11+ messages in thread
From: John Wiegley @ 2012-06-28  8:14 UTC (permalink / raw)
  To: help-gnu-emacs

>>>>> rajanikanth  <rajanikanth@gmail.com> writes:

> Here is my load-path:

What is the value of your eshell-modules variable?  That's what controls which
modules get loaded.

John



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

* Re: pwd (eshell) in Emacs 24.0.92
       [not found]         ` <mailman.3623.1340871292.855.help-gnu-emacs@gnu.org>
@ 2012-06-28 14:12           ` rajanikanth
  2012-06-29  4:40             ` John Wiegley
       [not found]             ` <mailman.3681.1340944826.855.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 11+ messages in thread
From: rajanikanth @ 2012-06-28 14:12 UTC (permalink / raw)
  To: gnu.emacs.help; +Cc: help-gnu-emacs

On Thursday, 28 June 2012 04:14:34 UTC-4, John Wiegley  wrote:
> >>>>> rajanikanth   writes:
> 
> > Here is my load-path:
> 
> What is the value of your eshell-modules variable?  That's what controls which
> modules get loaded.
> 
> John

(eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs eshell-glob eshell-hist eshell-ls eshell-pred eshell-prompt eshell-script eshell-term eshell-unix)

Thanks,
Raj



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

* Re: pwd (eshell) in Emacs 24.0.92
  2012-06-28 14:12           ` rajanikanth
@ 2012-06-29  4:40             ` John Wiegley
       [not found]             ` <mailman.3681.1340944826.855.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 11+ messages in thread
From: John Wiegley @ 2012-06-29  4:40 UTC (permalink / raw)
  To: help-gnu-emacs

>>>>> rajanikanth  <rajanikanth@gmail.com> writes:

>> What is the value of your eshell-modules variable?  That's what controls which
>> modules get loaded.

> (eshell-alias eshell-banner eshell-basic eshell-cmpl eshell-dirs eshell-glob
> eshell-hist eshell-ls eshell-pred eshell-prompt eshell-script eshell-term
> eshell-unix)

I really don't have an idea what the problem might be at this point, Raj.  It
still happens if you start emacs with "emacs -Q"?

John



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

* Re: pwd (eshell) in Emacs 24.0.92
       [not found]             ` <mailman.3681.1340944826.855.help-gnu-emacs@gnu.org>
@ 2012-06-29 14:31               ` rajanikanth
  2012-07-03  0:03                 ` John Wiegley
  0 siblings, 1 reply; 11+ messages in thread
From: rajanikanth @ 2012-06-29 14:31 UTC (permalink / raw)
  To: gnu.emacs.help; +Cc: help-gnu-emacs

>On Friday, 29 June 2012 00:40:17 UTC-4, John Wiegley  wrote:
> 
> I really don't have an idea what the problem might be at this point, Raj.  It
> still happens if you start emacs with "emacs -Q"?
> 
> John

Thanks for your help so far John. Yes, it still happens if I start emacs with the -Q option.

Thanks,
Raj



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

* Re: pwd (eshell) in Emacs 24.0.92
  2012-06-29 14:31               ` rajanikanth
@ 2012-07-03  0:03                 ` John Wiegley
  0 siblings, 0 replies; 11+ messages in thread
From: John Wiegley @ 2012-07-03  0:03 UTC (permalink / raw)
  To: help-gnu-emacs

>>>>> rajanikanth  <rajanikanth@gmail.com> writes:

> Thanks for your help so far John. Yes, it still happens if I start emacs
> with the -Q option.

I really don't know then, Raj, I'm sorry.  It sounds like an installation
issue at this point.

John



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

end of thread, other threads:[~2012-07-03  0:03 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-30  1:28 pwd (eshell) in Emacs 24.0.92 Rajanikanth Jammalamadaka
2011-12-30  9:20 ` Andreas Röhler
2011-12-30  9:38 ` Peter Dyballa
     [not found] ` <mailman.905.1325237895.15002.help-gnu-emacs@gnu.org>
2012-06-26 19:28   ` rajanikanth
     [not found]   ` <mailman.3522.1340738932.855.help-gnu-emacs@gnu.org>
2012-06-26 23:58     ` John Wiegley
2012-06-27 14:27       ` rajanikanth
2012-06-28  8:14         ` John Wiegley
     [not found]         ` <mailman.3623.1340871292.855.help-gnu-emacs@gnu.org>
2012-06-28 14:12           ` rajanikanth
2012-06-29  4:40             ` John Wiegley
     [not found]             ` <mailman.3681.1340944826.855.help-gnu-emacs@gnu.org>
2012-06-29 14:31               ` rajanikanth
2012-07-03  0:03                 ` John Wiegley

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.