aboutsummaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
Diffstat (limited to 'man')
-rw-r--r--man/ChangeLog7
-rw-r--r--man/faq.texi5
-rw-r--r--man/misc.texi3
3 files changed, 12 insertions, 3 deletions
diff --git a/man/ChangeLog b/man/ChangeLog
index 9980175fe56..98571380fc3 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,10 @@
12006-09-12 Paul Eggert <eggert@cs.ucla.edu>
2
3 * faq.texi (Escape sequences in shell output): EMACS is now set
4 to Emacs's absolute file name, not to "t".
5 (^M in the shell buffer): Likewise.
6 * misc.texi (Interactive Shell): Likewise.
7
12006-09-11 Richard Stallman <rms@gnu.org> 82006-09-11 Richard Stallman <rms@gnu.org>
2 9
3 * building.texi (Compilation Mode): Clarification. 10 * building.texi (Compilation Mode): Clarification.
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:
2683@item 2683@item
2684Make the alias conditioned on the @code{EMACS} variable in the 2684Make the alias conditioned on the @code{EMACS} variable in the
2685environment. When Emacs runs a subsidiary shell, it exports the 2685environment. When Emacs runs a subsidiary shell, it exports the
2686@code{EMACS} variable with the value @code{t} to that shell. You can 2686@code{EMACS} variable to that shell, with value equal to the absolute
2687file name of Emacs. You can
2687unalias @code{ls} when that happens, thus limiting the alias to your 2688unalias @code{ls} when that happens, thus limiting the alias to your
2688interactive sessions. 2689interactive sessions.
2689 2690
@@ -2753,7 +2754,7 @@ file:
2753 2754
2754@example 2755@example
2755if ($?EMACS) then 2756if ($?EMACS) then
2756 if ("$EMACS" == t) then 2757 if ("$EMACS" =~ /*) then
2757 if ($?tcsh) unset edit 2758 if ($?tcsh) unset edit
2758 stty nl 2759 stty nl
2759 endif 2760 endif
diff --git a/man/misc.texi b/man/misc.texi
index f6fb5edfbdb..839e8bc88b3 100644
--- a/man/misc.texi
+++ b/man/misc.texi
@@ -488,7 +488,8 @@ Coding}.
488 488
489@cindex @env{EMACS} environment variable 489@cindex @env{EMACS} environment variable
490 Unless the environment variable @env{EMACS} is already defined, 490 Unless the environment variable @env{EMACS} is already defined,
491Emacs defines it in the subshell, with value @code{t}. A shell script 491Emacs defines it in the subshell, with value equal to Emacs's absolute
492file name. A shell script
492can check this variable to determine whether it has been run from an 493can check this variable to determine whether it has been run from an
493Emacs subshell. 494Emacs subshell.
494 495