diff options
| -rw-r--r-- | lisp/ansi-color.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ansi-color.el b/lisp/ansi-color.el index 769b21a38f3..9b022876ca2 100644 --- a/lisp/ansi-color.el +++ b/lisp/ansi-color.el | |||
| @@ -557,14 +557,14 @@ The face definitions are based upon the variables | |||
| 557 | (let ((ansi-color-map (make-vector 50 nil)) | 557 | (let ((ansi-color-map (make-vector 50 nil)) |
| 558 | (index 0)) | 558 | (index 0)) |
| 559 | ;; miscellaneous attributes | 559 | ;; miscellaneous attributes |
| 560 | (mapcar | 560 | (mapc |
| 561 | (function (lambda (e) | 561 | (function (lambda (e) |
| 562 | (aset ansi-color-map index e) | 562 | (aset ansi-color-map index e) |
| 563 | (setq index (1+ index)) )) | 563 | (setq index (1+ index)) )) |
| 564 | ansi-color-faces-vector) | 564 | ansi-color-faces-vector) |
| 565 | ;; foreground attributes | 565 | ;; foreground attributes |
| 566 | (setq index 30) | 566 | (setq index 30) |
| 567 | (mapcar | 567 | (mapc |
| 568 | (function (lambda (e) | 568 | (function (lambda (e) |
| 569 | (aset ansi-color-map index | 569 | (aset ansi-color-map index |
| 570 | (ansi-color-make-face 'foreground e)) | 570 | (ansi-color-make-face 'foreground e)) |
| @@ -572,7 +572,7 @@ The face definitions are based upon the variables | |||
| 572 | ansi-color-names-vector) | 572 | ansi-color-names-vector) |
| 573 | ;; background attributes | 573 | ;; background attributes |
| 574 | (setq index 40) | 574 | (setq index 40) |
| 575 | (mapcar | 575 | (mapc |
| 576 | (function (lambda (e) | 576 | (function (lambda (e) |
| 577 | (aset ansi-color-map index | 577 | (aset ansi-color-map index |
| 578 | (ansi-color-make-face 'background e)) | 578 | (ansi-color-make-face 'background e)) |