diff options
author | Paul Eggert <eggert@twinsun.com> | 2006-09-12 16:43:25 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 2006-09-12 16:43:25 +0000 |
commit | 4b1aaa8b07cf2797b5a57e2a1fd88f3ec0aa41e2 (patch) | |
tree | e00adba73d181d3d8b6a111ebfc856a0a3acc454 /man/faq.texi | |
parent | afc05254f5403c9d977013c70e4391e7ac1643b6 (diff) | |
download | emacs-4b1aaa8b07cf2797b5a57e2a1fd88f3ec0aa41e2.tar.gz |
* etc/NEWS: In terminal-oriented subshells, the EMACS environment
variable now defaults to Emacs's absolute file name, instead of
to "t".
* etc/PROBLEMS: Adjust tcsh advice for this.
* make-dist (EMACS): Exit and fail if the EMACS environment
variable is set to something other than an absolute file name.
* lisp/comint.el (comint-exec-1): Set EMACS to the full name of Emacs,
not to "t".
* lisp/progmodes/compile.el (compilation-start): Likewise.
* lisp/progmodes/idlwave.el (idlwave-rescan-asynchronously):
Don't use expand-file-name on invocation-directory, since this
might mishandle special characters in invocation-directory.
* man/faq.texi (Escape sequences in shell output): EMACS is now set
to Emacs's absolute file name, not to "t".
(^M in the shell buffer): Likewise.
* man/misc.texi (Interactive Shell): Likewise.
Diffstat (limited to 'man/faq.texi')
-rw-r--r-- | man/faq.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/man/faq.texi b/man/faq.texi index 54be5f38a65..1230fff62bb 100644 --- a/man/faq.texi +++ b/man/faq.texi @@ -2683,7 +2683,8 @@ shell init file. You have two alternatives to solve this: @item Make the alias conditioned on the @code{EMACS} variable in the environment. When Emacs runs a subsidiary shell, it exports the -@code{EMACS} variable with the value @code{t} to that shell. You can +@code{EMACS} variable to that shell, with value equal to the absolute +file name of Emacs. You can unalias @code{ls} when that happens, thus limiting the alias to your interactive sessions. @@ -2753,7 +2754,7 @@ file: @example if ($?EMACS) then - if ("$EMACS" == t) then + if ("$EMACS" =~ /*) then if ($?tcsh) unset edit stty nl endif |