diff options
| author | Glenn Morris | 2013-06-23 17:42:12 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-06-23 17:42:12 -0700 |
| commit | 7eeeb7ddc9b6d5d04a36f6a279464b2a552dfeaf (patch) | |
| tree | a402a82319de69560fed5c342213eac2a856de88 | |
| parent | e6b4a89e78d38315b199414da27d88437dc54a71 (diff) | |
| download | emacs-7eeeb7ddc9b6d5d04a36f6a279464b2a552dfeaf.tar.gz emacs-7eeeb7ddc9b6d5d04a36f6a279464b2a552dfeaf.zip | |
* doc/misc/eshell.texi: Fix cross-references to other manuals.
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/eshell.texi | 29 |
2 files changed, 23 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 2a62dc852e9..b2624e7b05a 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-06-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * eshell.texi: Fix cross-references to other manuals. | ||
| 4 | |||
| 1 | 2013-03-11 Glenn Morris <rgm@gnu.org> | 5 | 2013-03-11 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * Version 24.3 released. | 7 | * Version 24.3 released. |
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index d24cdc216b5..688a547feeb 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi | |||
| @@ -378,12 +378,13 @@ Similar to, but slightly different from, the GNU Coreutils | |||
| 378 | 378 | ||
| 379 | @item define | 379 | @item define |
| 380 | @cmindex define | 380 | @cmindex define |
| 381 | Define a varalias. @xref{Variable Aliases, , , elisp}. | 381 | Define a varalias. |
| 382 | @xref{Variable Aliases, , , elisp, The Emacs Lisp Reference Manual}. | ||
| 382 | 383 | ||
| 383 | @item diff | 384 | @item diff |
| 384 | @cmindex diff | 385 | @cmindex diff |
| 385 | Use Emacs's internal @code{diff} (not to be confused with | 386 | Use Emacs's internal @code{diff} (not to be confused with |
| 386 | @code{ediff}). @xref{Comparing Files, , , elisp}. | 387 | @code{ediff}). @xref{Comparing Files, , , emacs, The GNU Emacs Manual}. |
| 387 | 388 | ||
| 388 | @item grep | 389 | @item grep |
| 389 | @cmindex grep | 390 | @cmindex grep |
| @@ -422,15 +423,18 @@ and @code{("foo" "bar")} both evaluate to @code{("foo" "bar")}. | |||
| 422 | @item locate | 423 | @item locate |
| 423 | @cmindex locate | 424 | @cmindex locate |
| 424 | Alias to Emacs's @code{locate} function, which simply runs the external | 425 | Alias to Emacs's @code{locate} function, which simply runs the external |
| 425 | @command{locate} command and parses the results. @xref{Dired and `find', , , elisp}. | 426 | @command{locate} command and parses the results. |
| 427 | @xref{Dired and Find, , , emacs, The GNU Emacs Manual}. | ||
| 426 | 428 | ||
| 427 | @item make | 429 | @item make |
| 428 | @cmindex make | 430 | @cmindex make |
| 429 | Run @command{make} through @code{compile}. @xref{Running Compilations under Emacs, , , elisp}. | 431 | Run @command{make} through @code{compile}. |
| 432 | @xref{Compilation, , , emacs, The GNU Emacs Manual}. | ||
| 430 | 433 | ||
| 431 | @item occur | 434 | @item occur |
| 432 | @cmindex occur | 435 | @cmindex occur |
| 433 | Alias to Emacs's @code{occur}. @xref{Other Search-and-Loop Commands, , , elisp}. | 436 | Alias to Emacs's @code{occur}. |
| 437 | @xref{Other Repeating Search, , , emacs, The GNU Emacs Manual}. | ||
| 434 | 438 | ||
| 435 | @item printnl | 439 | @item printnl |
| 436 | @cmindex printnl | 440 | @cmindex printnl |
| @@ -647,7 +651,8 @@ variables in command invocations. | |||
| 647 | 651 | ||
| 648 | @item $#var | 652 | @item $#var |
| 649 | Expands to the length of the value bound to @code{var}. Raises an error | 653 | Expands to the length of the value bound to @code{var}. Raises an error |
| 650 | if the value is not a sequence (@pxref{Sequences Arrays and Vectors, Sequences, , elisp}). | 654 | if the value is not a sequence |
| 655 | (@pxref{Sequences Arrays Vectors, Sequences, , elisp, The Emacs Lisp Reference Manual}). | ||
| 651 | 656 | ||
| 652 | @item $(lisp) | 657 | @item $(lisp) |
| 653 | Expands to the result of evaluating the S-expression @code{(lisp)}. On | 658 | Expands to the result of evaluating the S-expression @code{(lisp)}. On |
| @@ -679,7 +684,8 @@ any regular expression. So to split on numbers, use @samp{$var["[0-9]+" 10 20]} | |||
| 679 | 684 | ||
| 680 | @item $var[hello] | 685 | @item $var[hello] |
| 681 | Calls @code{assoc} on @code{var} with @code{"hello"}, expecting it to be | 686 | Calls @code{assoc} on @code{var} with @code{"hello"}, expecting it to be |
| 682 | an alist (@pxref{Association List Type, Association Lists, , elisp}). | 687 | an alist (@pxref{Association List Type, Association Lists, , elisp, |
| 688 | The Emacs Lisp Reference Manual}). | ||
| 683 | 689 | ||
| 684 | @item $#var[hello] | 690 | @item $#var[hello] |
| 685 | Returns the length of the cdr of the element of @code{var} who car is equal | 691 | Returns the length of the cdr of the element of @code{var} who car is equal |
| @@ -692,9 +698,11 @@ to @code{"hello"}. | |||
| 692 | Eshell's globbing syntax is very similar to that of Zsh. Users coming | 698 | Eshell's globbing syntax is very similar to that of Zsh. Users coming |
| 693 | from Bash can still use Bash-style globbing, as there are no | 699 | from Bash can still use Bash-style globbing, as there are no |
| 694 | incompatibilities. Most globbing is pattern-based expansion, but there | 700 | incompatibilities. Most globbing is pattern-based expansion, but there |
| 695 | is also predicate-based expansion. See @ref{Filename Generation, , , zsh} | 701 | is also predicate-based expansion. See |
| 702 | @ref{Filename Generation, , , zsh, The Z Shell Manual} | ||
| 696 | for full syntax. To customize the syntax and behaviour of globbing in | 703 | for full syntax. To customize the syntax and behaviour of globbing in |
| 697 | Eshell see the Customize@footnote{@xref{Customization Settings, Customize, , elisp}.} | 704 | Eshell see the Customize@footnote{@xref{Easy Customization, , , emacs, |
| 705 | The GNU Emacs Manual}.} | ||
| 698 | groups ``eshell-glob'' and ``eshell-pred''. | 706 | groups ``eshell-glob'' and ``eshell-pred''. |
| 699 | 707 | ||
| 700 | @node Input/Output | 708 | @node Input/Output |
| @@ -738,7 +746,8 @@ can be disabled and enabled without having to unload and reload them, | |||
| 738 | and to provide a common parent Customize group for the | 746 | and to provide a common parent Customize group for the |
| 739 | modules.@footnote{ERC provides a similar module facility.} An Eshell | 747 | modules.@footnote{ERC provides a similar module facility.} An Eshell |
| 740 | module is defined the same as any other library but one requirement: the | 748 | module is defined the same as any other library but one requirement: the |
| 741 | module must define a Customize@footnote{@xref{Customization Settings, Customize, , elisp}.} | 749 | module must define a Customize@footnote{@xref{Customization, , , |
| 750 | elisp, The Emacs Lisp Reference Manual}.} | ||
| 742 | group using @code{eshell-defgroup} (in place of @code{defgroup}) with | 751 | group using @code{eshell-defgroup} (in place of @code{defgroup}) with |
| 743 | @code{eshell-module} as the parent group.@footnote{If the module has | 752 | @code{eshell-module} as the parent group.@footnote{If the module has |
| 744 | no user-customizable options, then there is no need to define it as an | 753 | no user-customizable options, then there is no need to define it as an |