diff options
author | Glenn Morris <rgm@gnu.org> | 2010-09-25 14:51:55 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-09-25 14:51:55 -0700 |
commit | ec60da520ebe8cc187ab44e17a3645147b75ec57 (patch) | |
tree | 96f0a8075fe50dfd85d1e3ab721c94a395409e76 /lisp/eshell/esh-io.el | |
parent | 4c96435152dd2b343057f80f995910ba806774e8 (diff) | |
download | emacs-ec60da520ebe8cc187ab44e17a3645147b75ec57.tar.gz emacs-ec60da520ebe8cc187ab44e17a3645147b75ec57.tar.bz2 emacs-ec60da520ebe8cc187ab44e17a3645147b75ec57.zip |
Cosmetic doc fixes for eshell.
* eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
* eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
* eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
* eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
* eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
* eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
* eshell/esh-mode.el, eshell/esh-proc.el, eshell/esh-test.el:
* eshell/esh-util.el, eshell/esh-var.el:
Remove leading `*' from docs of faces and defcustoms.
Diffstat (limited to 'lisp/eshell/esh-io.el')
-rw-r--r-- | lisp/eshell/esh-io.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/eshell/esh-io.el b/lisp/eshell/esh-io.el index 3aa785c7c1b..53b6fd2163e 100644 --- a/lisp/eshell/esh-io.el +++ b/lisp/eshell/esh-io.el @@ -73,12 +73,12 @@ though they were files." ;;; User Variables: (defcustom eshell-io-load-hook '(eshell-io-initialize) - "*A hook that gets run when `eshell-io' is loaded." + "A hook that gets run when `eshell-io' is loaded." :type 'hook :group 'eshell-io) (defcustom eshell-number-of-handles 3 - "*The number of file handles that eshell supports. + "The number of file handles that eshell supports. Currently this is standard input, output and error. But even all of these Emacs does not currently support with asynchronous processes \(which is what eshell uses so that you can continue doing work in @@ -87,17 +87,17 @@ other buffers) ." :group 'eshell-io) (defcustom eshell-output-handle 1 - "*The index of the standard output handle." + "The index of the standard output handle." :type 'integer :group 'eshell-io) (defcustom eshell-error-handle 2 - "*The index of the standard error handle." + "The index of the standard error handle." :type 'integer :group 'eshell-io) (defcustom eshell-buffer-shorthand nil - "*If non-nil, a symbol name can be used for a buffer in redirection. + "If non-nil, a symbol name can be used for a buffer in redirection. If nil, redirecting to a buffer requires buffer name syntax. If this variable is set, redirection directly to Lisp symbols will be impossible. @@ -110,7 +110,7 @@ Example: :group 'eshell-io) (defcustom eshell-print-queue-size 5 - "*The size of the print queue, for doing buffered printing. + "The size of the print queue, for doing buffered printing. This is basically a speed enhancement, to avoid blocking the Lisp code from executing while Emacs is redisplaying." :type 'integer @@ -127,7 +127,7 @@ from executing while Emacs is redisplaying." (let ((x-select-enable-clipboard t)) (kill-new ""))) 'eshell-clipboard-append) t)) - "*Map virtual devices name to Emacs Lisp functions. + "Map virtual devices name to Emacs Lisp functions. If the user specifies any of the filenames above as a redirection target, the function in the second element will be called. |