diff options
Diffstat (limited to 'man')
| -rw-r--r-- | man/ChangeLog | 7 | ||||
| -rw-r--r-- | man/faq.texi | 5 | ||||
| -rw-r--r-- | man/misc.texi | 3 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-09-11 Richard Stallman <rms@gnu.org> | 8 | 2006-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 |
| 2684 | Make the alias conditioned on the @code{EMACS} variable in the | 2684 | Make the alias conditioned on the @code{EMACS} variable in the |
| 2685 | environment. When Emacs runs a subsidiary shell, it exports the | 2685 | environment. 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 |
| 2687 | file name of Emacs. You can | ||
| 2687 | unalias @code{ls} when that happens, thus limiting the alias to your | 2688 | unalias @code{ls} when that happens, thus limiting the alias to your |
| 2688 | interactive sessions. | 2689 | interactive sessions. |
| 2689 | 2690 | ||
| @@ -2753,7 +2754,7 @@ file: | |||
| 2753 | 2754 | ||
| 2754 | @example | 2755 | @example |
| 2755 | if ($?EMACS) then | 2756 | if ($?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, |
| 491 | Emacs defines it in the subshell, with value @code{t}. A shell script | 491 | Emacs defines it in the subshell, with value equal to Emacs's absolute |
| 492 | file name. A shell script | ||
| 492 | can check this variable to determine whether it has been run from an | 493 | can check this variable to determine whether it has been run from an |
| 493 | Emacs subshell. | 494 | Emacs subshell. |
| 494 | 495 | ||