diff options
| author | Kai Großjohann | 2002-06-17 15:55:51 +0000 |
|---|---|---|
| committer | Kai Großjohann | 2002-06-17 15:55:51 +0000 |
| commit | 1ecfdc6940dfccd423a6c3d2bd828e58208c3870 (patch) | |
| tree | af4b389164ac76e0784ae41c689886a21749f45e | |
| parent | 72459b15495b7ef0a3cf9a7080a548310ec363a9 (diff) | |
| download | emacs-1ecfdc6940dfccd423a6c3d2bd828e58208c3870.tar.gz emacs-1ecfdc6940dfccd423a6c3d2bd828e58208c3870.zip | |
*** empty log message ***
| -rw-r--r-- | man/ChangeLog | 1 | ||||
| -rw-r--r-- | man/eshell.texi | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/man/ChangeLog b/man/ChangeLog index 92b78fb78b8..ca084e4e38c 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | (Top): Don't include it in DVI output. | 9 | (Top): Don't include it in DVI output. |
| 10 | (History): Explain $- and $+. | 10 | (History): Explain $- and $+. |
| 11 | (Built-ins): New node. Document `cd'. | 11 | (Built-ins): New node. Document `cd'. |
| 12 | (Built-ins): Explain `cd -42'. | ||
| 12 | 13 | ||
| 13 | * Makefile.in (INFO_TARGETS, DVI_TARGETS): Add Tramp. | 14 | * Makefile.in (INFO_TARGETS, DVI_TARGETS): Add Tramp. |
| 14 | (../info/tramp, tramp.dvi): New targets. | 15 | (../info/tramp, tramp.dvi): New targets. |
diff --git a/man/eshell.texi b/man/eshell.texi index da5179f0899..742c279256e 100644 --- a/man/eshell.texi +++ b/man/eshell.texi | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | \input texinfo @c -*-texinfo-*- | 1 | \input texinfo @c -*-texinfo-*- |
| 2 | 2 | ||
| 3 | @c "@(#)$Name: $:$Id: eshell.texi,v 1.12 2001/04/19 15:10:31 gerd Exp $" | 3 | @c "@(#)$Name: $:$Id: eshell.texi,v 1.13 2002/06/17 11:50:12 kai Exp $" |
| 4 | 4 | ||
| 5 | @c Documentation for Eshell: The Emacs Shell. | 5 | @c Documentation for Eshell: The Emacs Shell. |
| 6 | @c Copyright (C) 1999, 2000 Free Software Foundation, Inc. | 6 | @c Copyright (C) 1999, 2000 Free Software Foundation, Inc. |
| @@ -592,12 +592,15 @@ When it receives no argument at all, it changes to the home directory. | |||
| 592 | Giving the command @samp{cd -} changes back to the previous working | 592 | Giving the command @samp{cd -} changes back to the previous working |
| 593 | directory (this is the same as @samp{cd $-}). | 593 | directory (this is the same as @samp{cd $-}). |
| 594 | 594 | ||
| 595 | The command @samp{cd =} shows the directory stack. | 595 | The command @samp{cd =} shows the directory stack. Each line is |
| 596 | numbered. | ||
| 596 | 597 | ||
| 597 | With @samp{cd =foo}, Eshell searches the directory stack for a | 598 | With @samp{cd =foo}, Eshell searches the directory stack for a |
| 598 | directory matching the regular expression @samp{foo} and changes to | 599 | directory matching the regular expression @samp{foo} and changes to |
| 599 | that directory. | 600 | that directory. |
| 600 | 601 | ||
| 602 | With @samp{cd -42}, you can access the directory stack by number. | ||
| 603 | |||
| 601 | @end table | 604 | @end table |
| 602 | 605 | ||
| 603 | 606 | ||