diff options
| -rw-r--r-- | lisp/faces.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 91003a5548b..a775d2d7cfd 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -1324,7 +1324,7 @@ created." | |||
| 1324 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 1324 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 1325 | 1325 | ||
| 1326 | ;; Make the standard faces. The C code knows faces `default', | 1326 | ;; Make the standard faces. The C code knows faces `default', |
| 1327 | ;; `modeline', `toolbar' and `region', so they must be the first faces | 1327 | ;; `modeline', `tool-bar' and `region', so they must be the first faces |
| 1328 | ;; made. Unspecified attributes of these three faces are filled-in | 1328 | ;; made. Unspecified attributes of these three faces are filled-in |
| 1329 | ;; from frame parameters in the C code. | 1329 | ;; from frame parameters in the C code. |
| 1330 | 1330 | ||
| @@ -1357,14 +1357,14 @@ created." | |||
| 1357 | :group 'basic-faces) | 1357 | :group 'basic-faces) |
| 1358 | 1358 | ||
| 1359 | 1359 | ||
| 1360 | (defface toolbar | 1360 | (defface tool-bar |
| 1361 | '((((type x) (class color)) | 1361 | '((((type x) (class color)) |
| 1362 | (:box (:line-width 1 :style released-button) :background "grey75")) | 1362 | (:box (:line-width 1 :style released-button) :background "grey75")) |
| 1363 | (((type x) (class mono)) | 1363 | (((type x) (class mono)) |
| 1364 | (:box (:line-width 1 :style released-button) :background "grey")) | 1364 | (:box (:line-width 1 :style released-button) :background "grey")) |
| 1365 | (t | 1365 | (t |
| 1366 | ())) | 1366 | ())) |
| 1367 | "Basic toolbar face." | 1367 | "Basic tool-bar face." |
| 1368 | :group 'basic-faces) | 1368 | :group 'basic-faces) |
| 1369 | 1369 | ||
| 1370 | 1370 | ||