diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/ChangeLog | 9 | ||||
| -rw-r--r-- | etc/NEWS | 8 | ||||
| -rw-r--r-- | etc/PROBLEMS | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index d3e5e2cfdf6..e236643da10 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,6 +1,13 @@ | |||
| 1 | 2006-09-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * NEWS: In terminal-oriented subshells, the EMACS environment | ||
| 4 | variable now defaults to Emacs's absolute file name, instead of | ||
| 5 | to "t". | ||
| 6 | * PROBLEMS: Adjust tcsh advice for this. | ||
| 7 | |||
| 1 | 2006-09-10 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 8 | 2006-09-10 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 9 | ||
| 3 | * PROBLEMS (are): Emacs compiled with Gtk+ crashes when closing a | 10 | * PROBLEMS (are): Emacs compiled with Gtk+ crashes when closing a |
| 4 | display (x-close-connection). | 11 | display (x-close-connection). |
| 5 | 12 | ||
| 6 | 2006-09-02 Juri Linkov <juri@jurta.org> | 13 | 2006-09-02 Juri Linkov <juri@jurta.org> |
| @@ -1434,6 +1434,10 @@ otherwise behaves quite similarly to the bash version. | |||
| 1434 | `comint-use-prompt-regexp'. The old name has been kept as an alias, | 1434 | `comint-use-prompt-regexp'. The old name has been kept as an alias, |
| 1435 | but declared obsolete. | 1435 | but declared obsolete. |
| 1436 | 1436 | ||
| 1437 | +++ | ||
| 1438 | *** The EMACS environment variable now defaults to Emacs's absolute | ||
| 1439 | file name, instead of to "t". | ||
| 1440 | |||
| 1437 | ** M-x Compile changes: | 1441 | ** M-x Compile changes: |
| 1438 | 1442 | ||
| 1439 | --- | 1443 | --- |
| @@ -1490,6 +1494,10 @@ it doesn't scroll the compilation output window. If there is no left fringe, | |||
| 1490 | no arrow is displayed and a value of nil means display the message at the top | 1494 | no arrow is displayed and a value of nil means display the message at the top |
| 1491 | of the window. | 1495 | of the window. |
| 1492 | 1496 | ||
| 1497 | +++ | ||
| 1498 | *** The EMACS environment variable now defaults to Emacs's absolute | ||
| 1499 | file name, instead of to "t". | ||
| 1500 | |||
| 1493 | ** Occur mode changes: | 1501 | ** Occur mode changes: |
| 1494 | 1502 | ||
| 1495 | +++ | 1503 | +++ |
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 06ef3a880aa..f42f62a3332 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -540,7 +540,7 @@ on the flag to output ^M at the end of each line. You can fix the | |||
| 540 | problem by adding this to your .cshrc file: | 540 | problem by adding this to your .cshrc file: |
| 541 | 541 | ||
| 542 | if ($?EMACS) then | 542 | if ($?EMACS) then |
| 543 | if ($EMACS == "t") then | 543 | if ("$EMACS" =~ /*) then |
| 544 | unset edit | 544 | unset edit |
| 545 | stty -icrnl -onlcr -echo susp ^Z | 545 | stty -icrnl -onlcr -echo susp ^Z |
| 546 | endif | 546 | endif |