aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorXue Fuqiao2013-06-12 20:12:47 +0800
committerXue Fuqiao2013-06-12 20:12:47 +0800
commit6186a2767fcae48a43675dabc457ed2b2177b884 (patch)
tree8eb823df7cbd64d9bf9201c03cadd89fe1e441ac /doc/misc
parent8d0b26f65d9d4cf52a11a273073cd52fb1feaf13 (diff)
parent5f9dbd7a1241239b5376435e96fbd9dbfa65e0f5 (diff)
downloademacs-6186a2767fcae48a43675dabc457ed2b2177b884.tar.gz
emacs-6186a2767fcae48a43675dabc457ed2b2177b884.zip
Merge from mainline.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/ChangeLog10
-rw-r--r--doc/misc/epa.texi5
-rw-r--r--doc/misc/eshell.texi27
3 files changed, 32 insertions, 10 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index bcd3fe78ae8..4cae3d0a478 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,13 @@
12013-06-10 Aidan Gauland <aidalgol@amuri.net>
2
3 * eshell.texi (Input/Output): Expand to cover new visual-command
4 options, eshell-visual-subcommands and eshell-visual-options.
5 Divide into separate Visual Commands and Redirection sections.
6
72013-06-10 Glenn Morris <rgm@gnu.org>
8
9 * epa.texi (Cryptographic operations on files): Update epa-decrypt-file.
10
12013-06-04 Katsumi Yamaoka <yamaoka@jpl.org> 112013-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
2 12
3 * gnus.texi (Article Date): 13 * gnus.texi (Article Date):
diff --git a/doc/misc/epa.texi b/doc/misc/epa.texi
index e21851ef37a..adc63cc0bdb 100644
--- a/doc/misc/epa.texi
+++ b/doc/misc/epa.texi
@@ -240,8 +240,9 @@ you answered yes, it will let you select the signing keys.
240@node Cryptographic operations on files 240@node Cryptographic operations on files
241@section Cryptographic operations on files 241@section Cryptographic operations on files
242 242
243@deffn Command epa-decrypt-file file 243@deffn Command epa-decrypt-file file &optional output
244Decrypt @var{file}. 244Decrypt @var{file}. If you do not specify the name @var{output} to
245use for the decrypted file, this function prompts for the value to use.
245@end deffn 246@end deffn
246 247
247@deffn Command epa-verify-file file 248@deffn Command epa-verify-file file
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi
index dca95da2d10..0da422fe14f 100644
--- a/doc/misc/eshell.texi
+++ b/doc/misc/eshell.texi
@@ -701,14 +701,25 @@ groups ``eshell-glob'' and ``eshell-pred''.
701@node Input/Output 701@node Input/Output
702@chapter Input/Output 702@chapter Input/Output
703Since Eshell does not communicate with a terminal like most command 703Since Eshell does not communicate with a terminal like most command
704shells, IO is a little different. If you try to run programs from 704shells, IO is a little different.
705within Eshell that are not line-oriented, such as programs that use 705
706ncurses, you will just get garbage output, since the Eshell buffer is 706@section Visual Commands
707not a terminal emulator. Eshell solves this problem by running 707If you try to run programs from within Eshell that are not
708specified commands in Emacs's terminal emulator; to let Eshell know 708line-oriented, such as programs that use ncurses, you will just get
709which commands need to be run in a terminal, add them to the list 709garbage output, since the Eshell buffer is not a terminal emulator.
710@var{eshell-visual-commands}. 710Eshell solves this problem by running such programs in Emacs's
711 711terminal emulator.
712
713Programs that need a terminal to display output properly are referred
714to in this manual as ``visual commands,'' because they are not simply
715line-oriented. You must tell Eshell which commands are visual, by
716adding them to @var{eshell-visual-commands}; for commands that are
717visual for only certain @emph{sub}-commands -- e.g. @samp{git log} but
718not @samp{git status} -- use @var{eshell-visual-subcommands}; and for
719commands that are visual only when passed certain options, use
720@var{eshell-visual-options}.
721
722@section Redirection
712Redirection is mostly the same in Eshell as it is in other command 723Redirection is mostly the same in Eshell as it is in other command
713shells. The output redirection operators @code{>} and @code{>>} as 724shells. The output redirection operators @code{>} and @code{>>} as
714well as pipes are supported, but there is not yet any support for 725well as pipes are supported, but there is not yet any support for