comparison lisp/eshell/em-term.el @ 110580:f57f72bb4757

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.
author Glenn Morris <rgm@gnu.org>
date Sat, 25 Sep 2010 14:51:55 -0700
parents bcc7c00e9ef4
children 417b1e4d63cd
comparison
equal deleted inserted replaced
110579:5fabe7db5188 110580:f57f72bb4757
46 :group 'eshell-module) 46 :group 'eshell-module)
47 47
48 ;;; User Variables: 48 ;;; User Variables:
49 49
50 (defcustom eshell-term-load-hook '(eshell-term-initialize) 50 (defcustom eshell-term-load-hook '(eshell-term-initialize)
51 "*A list of functions to call when loading `eshell-term'." 51 "A list of functions to call when loading `eshell-term'."
52 :type 'hook 52 :type 'hook
53 :group 'eshell-term) 53 :group 'eshell-term)
54 54
55 (defcustom eshell-visual-commands 55 (defcustom eshell-visual-commands
56 '("vi" ; what is going on?? 56 '("vi" ; what is going on??
57 "screen" "top" ; ok, a valid program... 57 "screen" "top" ; ok, a valid program...
58 "less" "more" ; M-x view-file 58 "less" "more" ; M-x view-file
59 "lynx" "ncftp" ; w3.el, ange-ftp 59 "lynx" "ncftp" ; w3.el, ange-ftp
60 "pine" "tin" "trn" "elm") ; GNUS!! 60 "pine" "tin" "trn" "elm") ; GNUS!!
61 "*A list of commands that present their output in a visual fashion." 61 "A list of commands that present their output in a visual fashion."
62 :type '(repeat string) 62 :type '(repeat string)
63 :group 'eshell-term) 63 :group 'eshell-term)
64 64
65 (defcustom eshell-term-name "eterm" 65 (defcustom eshell-term-name "eterm"
66 "*Name to use for the TERM variable when running visual commands. 66 "Name to use for the TERM variable when running visual commands.
67 See `term-term-name' in term.el for more information on how this is 67 See `term-term-name' in term.el for more information on how this is
68 used." 68 used."
69 :type 'string 69 :type 'string
70 :group 'eshell-term) 70 :group 'eshell-term)
71 71
72 (defcustom eshell-escape-control-x t 72 (defcustom eshell-escape-control-x t
73 "*If non-nil, allow <C-x> to be handled by Emacs key in visual buffers. 73 "If non-nil, allow <C-x> to be handled by Emacs key in visual buffers.
74 See the variable `eshell-visual-commands'. If this variable is set to 74 See the variable `eshell-visual-commands'. If this variable is set to
75 nil, <C-x> will send that control character to the invoked process." 75 nil, <C-x> will send that control character to the invoked process."
76 :type 'boolean 76 :type 'boolean
77 :group 'eshell-term) 77 :group 'eshell-term)
78 78