aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorRichard M. Stallman2001-12-31 20:44:44 +0000
committerRichard M. Stallman2001-12-31 20:44:44 +0000
commit1fd714a4109f5b115bd28142d8c80641eac8f652 (patch)
treea17ba546689260ecb6c04858e2ef1adc3900fc82 /lisp/eshell
parent58b64ac7d948b58b5fa0c1b5f7fce04a3f5b2652 (diff)
downloademacs-1fd714a4109f5b115bd28142d8c80641eac8f652.tar.gz
emacs-1fd714a4109f5b115bd28142d8c80641eac8f652.zip
(various face definitions): Use :weight, not :bold.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-ls.el30
1 files changed, 15 insertions, 15 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el
index 00b426bac4c..9ddffc6acf0 100644
--- a/lisp/eshell/em-ls.el
+++ b/lisp/eshell/em-ls.el
@@ -107,21 +107,21 @@ faster and conserves more memory."
107 :group 'eshell-ls) 107 :group 'eshell-ls)
108 108
109(defface eshell-ls-directory-face 109(defface eshell-ls-directory-face
110 '((((class color) (background light)) (:foreground "Blue" :bold t)) 110 '((((class color) (background light)) (:foreground "Blue" :weight bold))
111 (((class color) (background dark)) (:foreground "SkyBlue" :bold t)) 111 (((class color) (background dark)) (:foreground "SkyBlue" :weight bold))
112 (t (:bold t))) 112 (t (:weight bold)))
113 "*The face used for highlight directories." 113 "*The face used for highlight directories."
114 :group 'eshell-ls) 114 :group 'eshell-ls)
115 115
116(defface eshell-ls-symlink-face 116(defface eshell-ls-symlink-face
117 '((((class color) (background light)) (:foreground "Dark Cyan" :bold t)) 117 '((((class color) (background light)) (:foreground "Dark Cyan" :weight bold))
118 (((class color) (background dark)) (:foreground "Cyan" :bold t))) 118 (((class color) (background dark)) (:foreground "Cyan" :weight bold)))
119 "*The face used for highlight symbolic links." 119 "*The face used for highlight symbolic links."
120 :group 'eshell-ls) 120 :group 'eshell-ls)
121 121
122(defface eshell-ls-executable-face 122(defface eshell-ls-executable-face
123 '((((class color) (background light)) (:foreground "ForestGreen" :bold t)) 123 '((((class color) (background light)) (:foreground "ForestGreen" :weight bold))
124 (((class color) (background dark)) (:foreground "Green" :bold t))) 124 (((class color) (background dark)) (:foreground "Green" :weight bold)))
125 "*The face used for highlighting executables (not directories, though)." 125 "*The face used for highlighting executables (not directories, though)."
126 :group 'eshell-ls) 126 :group 'eshell-ls)
127 127
@@ -138,14 +138,14 @@ faster and conserves more memory."
138 :group 'eshell-ls) 138 :group 'eshell-ls)
139 139
140(defface eshell-ls-special-face 140(defface eshell-ls-special-face
141 '((((class color) (background light)) (:foreground "Magenta" :bold t)) 141 '((((class color) (background light)) (:foreground "Magenta" :weight bold))
142 (((class color) (background dark)) (:foreground "Magenta" :bold t))) 142 (((class color) (background dark)) (:foreground "Magenta" :weight bold)))
143 "*The face used for highlighting non-regular files." 143 "*The face used for highlighting non-regular files."
144 :group 'eshell-ls) 144 :group 'eshell-ls)
145 145
146(defface eshell-ls-missing-face 146(defface eshell-ls-missing-face
147 '((((class color) (background light)) (:foreground "Red" :bold t)) 147 '((((class color) (background light)) (:foreground "Red" :weight bold))
148 (((class color) (background dark)) (:foreground "Red" :bold t))) 148 (((class color) (background dark)) (:foreground "Red" :weight bold)))
149 "*The face used for highlighting non-existant file names." 149 "*The face used for highlighting non-existant file names."
150 :group 'eshell-ls) 150 :group 'eshell-ls)
151 151
@@ -159,8 +159,8 @@ files."
159 :group 'eshell-ls) 159 :group 'eshell-ls)
160 160
161(defface eshell-ls-archive-face 161(defface eshell-ls-archive-face
162 '((((class color) (background light)) (:foreground "Orchid" :bold t)) 162 '((((class color) (background light)) (:foreground "Orchid" :weight bold))
163 (((class color) (background dark)) (:foreground "Orchid" :bold t))) 163 (((class color) (background dark)) (:foreground "Orchid" :weight bold)))
164 "*The face used for highlighting archived and compressed file names." 164 "*The face used for highlighting archived and compressed file names."
165 :group 'eshell-ls) 165 :group 'eshell-ls)
166 166
@@ -199,8 +199,8 @@ really need to stick around for very long."
199 :group 'eshell-ls) 199 :group 'eshell-ls)
200 200
201(defface eshell-ls-clutter-face 201(defface eshell-ls-clutter-face
202 '((((class color) (background light)) (:foreground "OrangeRed" :bold t)) 202 '((((class color) (background light)) (:foreground "OrangeRed" :weight bold))
203 (((class color) (background dark)) (:foreground "OrangeRed" :bold t))) 203 (((class color) (background dark)) (:foreground "OrangeRed" :weight bold)))
204 "*The face used for highlighting junk file names." 204 "*The face used for highlighting junk file names."
205 :group 'eshell-ls) 205 :group 'eshell-ls)
206 206