* eshell and external commands
@ 2007-07-09 18:21 Alfred M. Szmidt
2007-07-09 18:28 ` Lennart Borgman (gmail)
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Alfred M. Szmidt @ 2007-07-09 18:21 UTC (permalink / raw)
To: emacs-devel
Often when executing a external command, eshell gets a bit confused.
For example, when doing `ls -B' (-B will cause eshell to call the
external ls):
~ $ ls -lB
~ $ total 169316
drwxr-xr-x 5 ams ams 4096 2007-06-14 22:42 Backup
drwxr-xr-x 26 ams ams 8192 2007-07-04 13:04 Backup.tmp
drwxr-xr-x 2 ams ams 4096 2007-06-04 20:41 bin
drwxr-xr-x 2 ams ams 4096 2007-07-02 08:48 Desktop
-rw------- 1 ams ams 2120 2007-06-28 14:31 diary
drwxr-xr-x 12 ams ams 4096 2007-05-18 00:44 docs
drwxr-xr-x 3 ams ams 4096 2007-07-08 13:19 elisp
lrwxrwxrwx 1 ams ams 11 2007-05-23 23:12 emacs -> s/vcs/emacs
-rw-r--r-- 1 ams ams 173896 2007-07-07 22:47 emms
lrwxrwxrwx 1 ams ams 15 2007-05-23 23:12 inetutils -> s/vcs/inetutils
drwxr-xr-x 5 ams ams 4096 2007-05-24 20:09 info
-rw-r--r-- 1 ams ams 313 2007-07-08 13:20 #*mail*#9338FhM#
-rw-r--r-- 1 ams ams 17749 2007-06-16 01:41 multi-mode.el
drwxr-xr-x 11 ams ams 4096 2007-06-23 15:03 Music
drwxr-xr-x 3 ams ams 4096 2007-06-15 03:06 Music.tmp
drwxr-xr-x 4 ams ams 4096 2007-06-16 01:00 News
drwxr-xr-x 5 ams ams 4096 2007-07-01 23:54 notes
-rw-r--r-- 1 ams ams 5051 2007-07-08 13:18 resume
-rw------- 1 ams ams 6198546 2007-07-02 23:38 RMAIL
-r-------- 1 ams ams 81400163 2006-07-13 12:19 RMAIL-2005.tar.bz2
-r-------- 1 ams ams 27744447 2007-05-23 19:09 RMAIL-2007.tar.bz2
-rw------- 1 ams ams 183 2007-03-28 03:48 RMAIL.empty
-rw------- 1 ams ams 9037761 2007-07-02 21:00 RMAIL.inbox
-rw------- 1 ams ams 436632 2007-07-02 21:00 RMAIL.inbox-kemisten
-rw------- 1 ams ams 21201 2007-06-30 00:23 RMAIL.inbox-update
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.inbox-uu
-r-------- 1 ams ams 47801466 2006-07-13 11:49 RMAIL-kemisten.tar.bz2
-rw------- 1 ams ams 183 2007-06-13 20:38 RMAIL.local
-rw------- 1 ams ams 68149 2007-06-09 00:21 RMAIL.outbox
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.outbox-kemisten
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.spam
drwxr-xr-x 5 ams ams 4096 2007-07-01 22:07 s
-rw------- 1 ams ams 99929 2007-07-08 12:36 sketch
drwxr-xr-x 2 ams ams 4096 2007-07-01 21:53 t
-rw-r--r-- 1 ams ams 1441 2007-07-08 13:14 todo
-rw-r--r-- 1 ams ams 18204 2007-07-08 13:16 tunes
_!_ [point is here now]
But, when inovoking the external command directly, /bin/ls -lB, it
works as it should,
~ $ /bin/ls -lB
total 169316
drwxr-xr-x 5 ams ams 4096 2007-06-14 22:42 Backup
drwxr-xr-x 26 ams ams 8192 2007-07-04 13:04 Backup.tmp
drwxr-xr-x 2 ams ams 4096 2007-06-04 20:41 bin
drwxr-xr-x 2 ams ams 4096 2007-07-02 08:48 Desktop
-rw------- 1 ams ams 2120 2007-06-28 14:31 diary
drwxr-xr-x 12 ams ams 4096 2007-05-18 00:44 docs
drwxr-xr-x 3 ams ams 4096 2007-07-08 13:19 elisp
lrwxrwxrwx 1 ams ams 11 2007-05-23 23:12 emacs -> s/vcs/emacs
-rw-r--r-- 1 ams ams 173896 2007-07-07 22:47 emms
lrwxrwxrwx 1 ams ams 15 2007-05-23 23:12 inetutils -> s/vcs/inetutils
drwxr-xr-x 5 ams ams 4096 2007-05-24 20:09 info
-rw-r--r-- 1 ams ams 2596 2007-07-08 13:23 #*mail*#9338FhM#
-rw-r--r-- 1 ams ams 17749 2007-06-16 01:41 multi-mode.el
drwxr-xr-x 11 ams ams 4096 2007-06-23 15:03 Music
drwxr-xr-x 3 ams ams 4096 2007-06-15 03:06 Music.tmp
drwxr-xr-x 4 ams ams 4096 2007-06-16 01:00 News
drwxr-xr-x 5 ams ams 4096 2007-07-01 23:54 notes
-rw-r--r-- 1 ams ams 5051 2007-07-08 13:18 resume
-rw------- 1 ams ams 6198546 2007-07-02 23:38 RMAIL
-r-------- 1 ams ams 81400163 2006-07-13 12:19 RMAIL-2005.tar.bz2
-r-------- 1 ams ams 27744447 2007-05-23 19:09 RMAIL-2007.tar.bz2
-rw------- 1 ams ams 183 2007-03-28 03:48 RMAIL.empty
-rw------- 1 ams ams 9037761 2007-07-02 21:00 RMAIL.inbox
-rw------- 1 ams ams 436632 2007-07-02 21:00 RMAIL.inbox-kemisten
-rw------- 1 ams ams 21201 2007-06-30 00:23 RMAIL.inbox-update
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.inbox-uu
-r-------- 1 ams ams 47801466 2006-07-13 11:49 RMAIL-kemisten.tar.bz2
-rw------- 1 ams ams 183 2007-06-13 20:38 RMAIL.local
-rw------- 1 ams ams 68149 2007-06-09 00:21 RMAIL.outbox
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.outbox-kemisten
-rw------- 1 ams ams 0 2007-05-23 19:09 RMAIL.spam
drwxr-xr-x 5 ams ams 4096 2007-07-01 22:07 s
-rw------- 1 ams ams 99929 2007-07-08 12:36 sketch
drwxr-xr-x 2 ams ams 4096 2007-07-01 21:53 t
-rw-r--r-- 1 ams ams 1441 2007-07-08 13:14 todo
-rw-r--r-- 1 ams ams 18204 2007-07-08 13:16 tunes
~ $ _!_
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:21 eshell and external commands Alfred M. Szmidt
@ 2007-07-09 18:28 ` Lennart Borgman (gmail)
2007-07-09 19:04 ` Lennart Borgman (gmail)
2007-07-11 18:35 ` Alfred M. Szmidt
2007-07-10 5:38 ` Richard Stallman
` (2 subsequent siblings)
3 siblings, 2 replies; 9+ messages in thread
From: Lennart Borgman (gmail) @ 2007-07-09 18:28 UTC (permalink / raw)
To: ams; +Cc: emacs-devel
Alfred M. Szmidt wrote:
> Often when executing a external command, eshell gets a bit confused.
> For example, when doing `ls -B' (-B will cause eshell to call the
> external ls):
Is this with the latest version of Emacs (22)? If so please report it as
a bug from the menus: Help - Send Bug Report
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:28 ` Lennart Borgman (gmail)
@ 2007-07-09 19:04 ` Lennart Borgman (gmail)
2007-07-11 18:35 ` Alfred M. Szmidt
1 sibling, 0 replies; 9+ messages in thread
From: Lennart Borgman (gmail) @ 2007-07-09 19:04 UTC (permalink / raw)
To: ams; +Cc: emacs-devel
Lennart Borgman (gmail) wrote:
> Alfred M. Szmidt wrote:
>> Often when executing a external command, eshell gets a bit confused.
>> For example, when doing `ls -B' (-B will cause eshell to call the
>> external ls):
>
>
> Is this with the latest version of Emacs (22)? If so please report it as
> a bug from the menus: Help - Send Bug Report
Eh, sorry, I did not see it was to the devel list ...
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:21 eshell and external commands Alfred M. Szmidt
2007-07-09 18:28 ` Lennart Borgman (gmail)
@ 2007-07-10 5:38 ` Richard Stallman
2007-07-13 19:51 ` Alfred M. Szmidt
2007-07-14 17:59 ` Richard Stallman
2007-07-29 2:23 ` Richard Stallman
3 siblings, 1 reply; 9+ messages in thread
From: Richard Stallman @ 2007-07-10 5:38 UTC (permalink / raw)
To: ams; +Cc: emacs-devel
I don't think we have anyone that regularly maintains eshell.
Would you like to try to debug this?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:28 ` Lennart Borgman (gmail)
2007-07-09 19:04 ` Lennart Borgman (gmail)
@ 2007-07-11 18:35 ` Alfred M. Szmidt
1 sibling, 0 replies; 9+ messages in thread
From: Alfred M. Szmidt @ 2007-07-11 18:35 UTC (permalink / raw)
To: Lennart Borgman (gmail); +Cc: emacs-devel
> Often when executing a external command, eshell gets a bit confused.
> For example, when doing `ls -B' (-B will cause eshell to call the
> external ls):
Is this with the latest version of Emacs (22)? If so please report
it as a bug from the menus: Help - Send Bug Report
This is from CVS emacs, sorr for forgetting to mention that. But the
bug probobly exists in Emacs 21 and 22 as well, but I do not use
those.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-10 5:38 ` Richard Stallman
@ 2007-07-13 19:51 ` Alfred M. Szmidt
2007-07-14 17:59 ` Richard Stallman
0 siblings, 1 reply; 9+ messages in thread
From: Alfred M. Szmidt @ 2007-07-13 19:51 UTC (permalink / raw)
To: rms; +Cc: emacs-devel
I don't think we have anyone that regularly maintains eshell.
Would you like to try to debug this?
I tried, but I failed. The code for eshell is to complex for me.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:21 eshell and external commands Alfred M. Szmidt
2007-07-09 18:28 ` Lennart Borgman (gmail)
2007-07-10 5:38 ` Richard Stallman
@ 2007-07-14 17:59 ` Richard Stallman
2007-07-29 2:23 ` Richard Stallman
3 siblings, 0 replies; 9+ messages in thread
From: Richard Stallman @ 2007-07-14 17:59 UTC (permalink / raw)
To: emacs-devel
Would someone else please debug that problem, and ack?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-13 19:51 ` Alfred M. Szmidt
@ 2007-07-14 17:59 ` Richard Stallman
0 siblings, 0 replies; 9+ messages in thread
From: Richard Stallman @ 2007-07-14 17:59 UTC (permalink / raw)
To: ams; +Cc: emacs-devel
Thanks for trying.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: eshell and external commands
2007-07-09 18:21 eshell and external commands Alfred M. Szmidt
` (2 preceding siblings ...)
2007-07-14 17:59 ` Richard Stallman
@ 2007-07-29 2:23 ` Richard Stallman
3 siblings, 0 replies; 9+ messages in thread
From: Richard Stallman @ 2007-07-29 2:23 UTC (permalink / raw)
To: emacs-devel
[I sent this message two weeks ago but did not get a response.]
Would someone else please debug that problem, and ack?
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2007-07-29 2:23 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-09 18:21 eshell and external commands Alfred M. Szmidt
2007-07-09 18:28 ` Lennart Borgman (gmail)
2007-07-09 19:04 ` Lennart Borgman (gmail)
2007-07-11 18:35 ` Alfred M. Szmidt
2007-07-10 5:38 ` Richard Stallman
2007-07-13 19:51 ` Alfred M. Szmidt
2007-07-14 17:59 ` Richard Stallman
2007-07-14 17:59 ` Richard Stallman
2007-07-29 2:23 ` Richard Stallman
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.