comparison lisp/eshell/em-unix.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 1d1d5d9bd884
children f349e65969e5
comparison
equal deleted inserted replaced
110579:5fabe7db5188 110580:f57f72bb4757
53 by name)." 53 by name)."
54 :tag "UNIX commands in Lisp" 54 :tag "UNIX commands in Lisp"
55 :group 'eshell-module) 55 :group 'eshell-module)
56 56
57 (defcustom eshell-unix-load-hook '(eshell-unix-initialize) 57 (defcustom eshell-unix-load-hook '(eshell-unix-initialize)
58 "*A list of functions to run when `eshell-unix' is loaded." 58 "A list of functions to run when `eshell-unix' is loaded."
59 :type 'hook 59 :type 'hook
60 :group 'eshell-unix) 60 :group 'eshell-unix)
61 61
62 (defcustom eshell-plain-grep-behavior nil 62 (defcustom eshell-plain-grep-behavior nil
63 "*If non-nil, standalone \"grep\" commands will behave normally. 63 "If non-nil, standalone \"grep\" commands will behave normally.
64 Standalone in this context means not redirected, and not on the 64 Standalone in this context means not redirected, and not on the
65 receiving side of a command pipeline." 65 receiving side of a command pipeline."
66 :type 'boolean 66 :type 'boolean
67 :group 'eshell-unix) 67 :group 'eshell-unix)
68 68
69 (defcustom eshell-no-grep-available (not (eshell-search-path "grep")) 69 (defcustom eshell-no-grep-available (not (eshell-search-path "grep"))
70 "*If non-nil, no grep is available on the current machine." 70 "If non-nil, no grep is available on the current machine."
71 :type 'boolean 71 :type 'boolean
72 :group 'eshell-unix) 72 :group 'eshell-unix)
73 73
74 (defcustom eshell-plain-diff-behavior nil 74 (defcustom eshell-plain-diff-behavior nil
75 "*If non-nil, standalone \"diff\" commands will behave normally. 75 "If non-nil, standalone \"diff\" commands will behave normally.
76 Standalone in this context means not redirected, and not on the 76 Standalone in this context means not redirected, and not on the
77 receiving side of a command pipeline." 77 receiving side of a command pipeline."
78 :type 'boolean 78 :type 'boolean
79 :group 'eshell-unix) 79 :group 'eshell-unix)
80 80
81 (defcustom eshell-plain-locate-behavior (featurep 'xemacs) 81 (defcustom eshell-plain-locate-behavior (featurep 'xemacs)
82 "*If non-nil, standalone \"locate\" commands will behave normally. 82 "If non-nil, standalone \"locate\" commands will behave normally.
83 Standalone in this context means not redirected, and not on the 83 Standalone in this context means not redirected, and not on the
84 receiving side of a command pipeline." 84 receiving side of a command pipeline."
85 :type 'boolean 85 :type 'boolean
86 :group 'eshell-unix) 86 :group 'eshell-unix)
87 87
88 (defcustom eshell-rm-removes-directories nil 88 (defcustom eshell-rm-removes-directories nil
89 "*If non-nil, `rm' will remove directory entries. 89 "If non-nil, `rm' will remove directory entries.
90 Otherwise, `rmdir' is required." 90 Otherwise, `rmdir' is required."
91 :type 'boolean 91 :type 'boolean
92 :group 'eshell-unix) 92 :group 'eshell-unix)
93 93
94 (defcustom eshell-rm-interactive-query (= (user-uid) 0) 94 (defcustom eshell-rm-interactive-query (= (user-uid) 0)
95 "*If non-nil, `rm' will query before removing anything." 95 "If non-nil, `rm' will query before removing anything."
96 :type 'boolean 96 :type 'boolean
97 :group 'eshell-unix) 97 :group 'eshell-unix)
98 98
99 (defcustom eshell-mv-interactive-query (= (user-uid) 0) 99 (defcustom eshell-mv-interactive-query (= (user-uid) 0)
100 "*If non-nil, `mv' will query before overwriting anything." 100 "If non-nil, `mv' will query before overwriting anything."
101 :type 'boolean 101 :type 'boolean
102 :group 'eshell-unix) 102 :group 'eshell-unix)
103 103
104 (defcustom eshell-mv-overwrite-files t 104 (defcustom eshell-mv-overwrite-files t
105 "*If non-nil, `mv' will overwrite files without warning." 105 "If non-nil, `mv' will overwrite files without warning."
106 :type 'boolean 106 :type 'boolean
107 :group 'eshell-unix) 107 :group 'eshell-unix)
108 108
109 (defcustom eshell-cp-interactive-query (= (user-uid) 0) 109 (defcustom eshell-cp-interactive-query (= (user-uid) 0)
110 "*If non-nil, `cp' will query before overwriting anything." 110 "If non-nil, `cp' will query before overwriting anything."
111 :type 'boolean 111 :type 'boolean
112 :group 'eshell-unix) 112 :group 'eshell-unix)
113 113
114 (defcustom eshell-cp-overwrite-files t 114 (defcustom eshell-cp-overwrite-files t
115 "*If non-nil, `cp' will overwrite files without warning." 115 "If non-nil, `cp' will overwrite files without warning."
116 :type 'boolean 116 :type 'boolean
117 :group 'eshell-unix) 117 :group 'eshell-unix)
118 118
119 (defcustom eshell-ln-interactive-query (= (user-uid) 0) 119 (defcustom eshell-ln-interactive-query (= (user-uid) 0)
120 "*If non-nil, `ln' will query before overwriting anything." 120 "If non-nil, `ln' will query before overwriting anything."
121 :type 'boolean 121 :type 'boolean
122 :group 'eshell-unix) 122 :group 'eshell-unix)
123 123
124 (defcustom eshell-ln-overwrite-files nil 124 (defcustom eshell-ln-overwrite-files nil
125 "*If non-nil, `ln' will overwrite files without warning." 125 "If non-nil, `ln' will overwrite files without warning."
126 :type 'boolean 126 :type 'boolean
127 :group 'eshell-unix) 127 :group 'eshell-unix)
128 128
129 (defcustom eshell-default-target-is-dot nil 129 (defcustom eshell-default-target-is-dot nil
130 "*If non-nil, the default destination for cp, mv or ln is `.'." 130 "If non-nil, the default destination for cp, mv or ln is `.'."
131 :type 'boolean 131 :type 'boolean
132 :group 'eshell-unix) 132 :group 'eshell-unix)
133 133
134 (defcustom eshell-du-prefer-over-ange nil 134 (defcustom eshell-du-prefer-over-ange nil
135 "*Use Eshell's du in ange-ftp remote directories. 135 "Use Eshell's du in ange-ftp remote directories.
136 Otherwise, Emacs will attempt to use rsh to invoke du on the remote machine." 136 Otherwise, Emacs will attempt to use rsh to invoke du on the remote machine."
137 :type 'boolean 137 :type 'boolean
138 :group 'eshell-unix) 138 :group 'eshell-unix)
139 139
140 ;;; Functions: 140 ;;; Functions: