diff options
| author | Alex Kost <alezost@gmail.com> | 2018-07-21 23:34:42 +0300 |
|---|---|---|
| committer | Alex Kost <alezost@gmail.com> | 2018-07-27 12:14:24 +0300 |
| commit | 9838e5e1be5875cdcdfca3d4a7e4dc665866b38e (patch) | |
| tree | e520462ff1e6d259b63ef9432363746ea438c420 /build-farm.el | |
| parent | Complete jobset names when possible (diff) | |
| download | emacs-build-farm-9838e5e1be5875cdcdfca3d4a7e4dc665866b38e.tar.gz | |
Move and rename some info faces
* build-farm-build.el (build-farm-build-info-project)
(build-farm-build-info-jobset, build-farm-build-info-job)
(build-farm-build-info-system): Move and rename to...
* build-farm.el (build-farm-info-project)
(build-farm-info-jobset, build-farm-info-job)
(build-farm-info-system): ... this.
Diffstat (limited to 'build-farm.el')
| -rw-r--r-- | build-farm.el | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/build-farm.el b/build-farm.el index 96e654a..af6f63c 100644 --- a/build-farm.el +++ b/build-farm.el @@ -61,6 +61,29 @@ :group 'faces) +;;; Faces and buttons + +(defface build-farm-info-project + '((t)) + "Face for projects in 'info' buffers." + :group 'build-farm-faces) + +(defface build-farm-info-jobset + '((t)) + "Face for jobsets in 'info' buffers." + :group 'build-farm-faces) + +(defface build-farm-info-job + '((t)) + "Face for jobs in 'info' buffers." + :group 'build-farm-faces) + +(defface build-farm-info-system + '((t)) + "Face for system names in 'info' buffers." + :group 'build-farm-faces) + + ;;; System types ;; XXX I don't like this hard-coding very much. But it looks like there |
