Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / ansi-color.el
blob0ab811c720534ae0bb16fd51eb3a7bb1a1c1cba0
1 ;;; ansi-color.el --- translate ANSI escape sequences into faces -*- lexical-binding: t -*-
3 ;; Copyright (C) 1999-2014 Free Software Foundation, Inc.
5 ;; Author: Alex Schroeder <alex@gnu.org>
6 ;; Maintainer: Alex Schroeder <alex@gnu.org>
7 ;; Version: 3.4.2
8 ;; Keywords: comm processes terminals services
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; This file provides a function that takes a string or a region
28 ;; containing Select Graphic Rendition (SGR) control sequences (formerly
29 ;; known as ANSI escape sequences) and tries to translate these into
30 ;; faces.
32 ;; This allows you to run ls --color=yes in shell-mode. It is now
33 ;; enabled by default; to disable it, set ansi-color-for-comint-mode
34 ;; to nil.
36 ;; Note that starting your shell from within Emacs might set the TERM
37 ;; environment variable. The new setting might disable the output of
38 ;; SGR control sequences. Using ls --color=yes forces ls to produce
39 ;; these.
41 ;; SGR control sequences are defined in section 3.8.117 of the ECMA-48
42 ;; standard (identical to ISO/IEC 6429), which is freely available as a
43 ;; PDF file <URL:http://www.ecma-international.org/publications/standards/Ecma-048.htm>.
44 ;; The "Graphic Rendition Combination Mode (GRCM)" implemented is
45 ;; "cumulative mode" as defined in section 7.2.8. Cumulative mode
46 ;; means that whenever possible, SGR control sequences are combined
47 ;; (ie. blue and bold).
49 ;; The basic functions are:
51 ;; `ansi-color-apply' to colorize a string containing SGR control
52 ;; sequences.
54 ;; `ansi-color-filter-apply' to filter SGR control sequences from a
55 ;; string.
57 ;; `ansi-color-apply-on-region' to colorize a region containing SGR
58 ;; control sequences.
60 ;; `ansi-color-filter-region' to filter SGR control sequences from a
61 ;; region.
63 ;;; Thanks
65 ;; Georges Brun-Cottan <gbruncot@emc.com> for improving ansi-color.el
66 ;; substantially by adding the code needed to cope with arbitrary chunks
67 ;; of output and the filter functions.
69 ;; Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> for pointing me to ECMA-48.
71 ;; Stefan Monnier <foo@acm.com> for explaining obscure font-lock stuff and for
72 ;; code suggestions.
76 ;;; Code:
78 (defvar comint-last-output-start)
80 ;; Customization
82 (defgroup ansi-colors nil
83 "Translating SGR control sequences to faces.
84 This translation effectively colorizes strings and regions based upon
85 SGR control sequences embedded in the text. SGR (Select Graphic
86 Rendition) control sequences are defined in section 8.3.117 of the
87 ECMA-48 standard (identical to ISO/IEC 6429), which is freely available
88 at <URL:http://www.ecma-international.org/publications/standards/Ecma-048.htm>
89 as a PDF file."
90 :version "21.1"
91 :group 'processes)
93 (defcustom ansi-color-faces-vector
94 [default bold default italic underline success warning error]
95 "Faces used for SGR control sequences determining a face.
96 This vector holds the faces used for SGR control sequence parameters 0
97 to 7.
99 Parameter Description Face used by default
100 0 default default
101 1 bold bold
102 2 faint default
103 3 italic italic
104 4 underlined underline
105 5 slowly blinking success
106 6 rapidly blinking warning
107 7 negative image error
109 Note that the symbol `default' is special: It will not be combined
110 with the current face.
112 This vector is used by `ansi-color-make-color-map' to create a color
113 map. This color map is stored in the variable `ansi-color-map'."
114 :type '(vector face face face face face face face face)
115 :set 'ansi-color-map-update
116 :initialize 'custom-initialize-default
117 :group 'ansi-colors)
119 (defcustom ansi-color-names-vector
120 ["black" "red" "green" "yellow" "blue" "magenta" "cyan" "white"]
121 "Colors used for SGR control sequences determining a color.
122 This vector holds the colors used for SGR control sequences parameters
123 30 to 37 (foreground colors) and 40 to 47 (background colors).
125 Parameter Color
126 30 40 black
127 31 41 red
128 32 42 green
129 33 43 yellow
130 34 44 blue
131 35 45 magenta
132 36 46 cyan
133 37 47 white
135 This vector is used by `ansi-color-make-color-map' to create a color
136 map. This color map is stored in the variable `ansi-color-map'.
138 Each element may also be a cons cell where the car and cdr specify the
139 foreground and background colors, respectively."
140 :type '(vector (choice color (cons color color))
141 (choice color (cons color color))
142 (choice color (cons color color))
143 (choice color (cons color color))
144 (choice color (cons color color))
145 (choice color (cons color color))
146 (choice color (cons color color))
147 (choice color (cons color color)))
148 :set 'ansi-color-map-update
149 :initialize 'custom-initialize-default
150 :group 'ansi-colors)
152 (defconst ansi-color-regexp "\033\\[\\([0-9;]*m\\)"
153 "Regexp that matches SGR control sequences.")
155 (defconst ansi-color-drop-regexp
156 "\033\\[\\([ABCDsuK]\\|[12][JK]\\|=[0-9]+[hI]\\|[0-9;]*[Hf]\\)"
157 "Regexp that matches ANSI control sequences to silently drop.")
159 (defconst ansi-color-parameter-regexp "\\([0-9]*\\)[m;]"
160 "Regexp that matches SGR control sequence parameters.")
163 ;; Convenience functions for comint modes (eg. shell-mode)
166 (defcustom ansi-color-for-comint-mode t
167 "Determines what to do with comint output.
168 If nil, do nothing.
169 If the symbol `filter', then filter all SGR control sequences.
170 If anything else (such as t), then translate SGR control sequences
171 into text properties.
173 In order for this to have any effect, `ansi-color-process-output' must
174 be in `comint-output-filter-functions'.
176 This can be used to enable colorized ls --color=yes output
177 in shell buffers. You set this variable by calling one of:
178 \\[ansi-color-for-comint-mode-on]
179 \\[ansi-color-for-comint-mode-off]
180 \\[ansi-color-for-comint-mode-filter]"
181 :type '(choice (const :tag "Do nothing" nil)
182 (const :tag "Filter" filter)
183 (const :tag "Translate" t))
184 :group 'ansi-colors
185 :version "23.2")
187 (defvar ansi-color-apply-face-function 'ansi-color-apply-overlay-face
188 "Function for applying an Ansi Color face to text in a buffer.
189 This function should accept three arguments: BEG, END, and FACE,
190 and it should apply face FACE to the text between BEG and END.")
192 ;;;###autoload
193 (defun ansi-color-for-comint-mode-on ()
194 "Set `ansi-color-for-comint-mode' to t."
195 (interactive)
196 (setq ansi-color-for-comint-mode t))
198 (defun ansi-color-for-comint-mode-off ()
199 "Set `ansi-color-for-comint-mode' to nil."
200 (interactive)
201 (setq ansi-color-for-comint-mode nil))
203 (defun ansi-color-for-comint-mode-filter ()
204 "Set `ansi-color-for-comint-mode' to symbol `filter'."
205 (interactive)
206 (setq ansi-color-for-comint-mode 'filter))
208 ;;;###autoload
209 (defun ansi-color-process-output (ignored)
210 "Maybe translate SGR control sequences of comint output into text properties.
212 Depending on variable `ansi-color-for-comint-mode' the comint output is
213 either not processed, SGR control sequences are filtered using
214 `ansi-color-filter-region', or SGR control sequences are translated into
215 text properties using `ansi-color-apply-on-region'.
217 The comint output is assumed to lie between the marker
218 `comint-last-output-start' and the process-mark.
220 This is a good function to put in `comint-output-filter-functions'."
221 (let ((start-marker (if (and (markerp comint-last-output-start)
222 (eq (marker-buffer comint-last-output-start)
223 (current-buffer))
224 (marker-position comint-last-output-start))
225 comint-last-output-start
226 (point-min-marker)))
227 (end-marker (process-mark (get-buffer-process (current-buffer)))))
228 (cond ((eq ansi-color-for-comint-mode nil))
229 ((eq ansi-color-for-comint-mode 'filter)
230 (ansi-color-filter-region start-marker end-marker))
232 (ansi-color-apply-on-region start-marker end-marker)))))
234 (define-obsolete-function-alias 'ansi-color-unfontify-region
235 'font-lock-default-unfontify-region "24.1")
237 ;; Working with strings
238 (defvar-local ansi-color-context nil
239 "Context saved between two calls to `ansi-color-apply'.
240 This is a list of the form (CODES FRAGMENT) or nil. CODES
241 represents the state the last call to `ansi-color-apply' ended
242 with, currently a list of ansi codes, and FRAGMENT is a string
243 starting with an escape sequence, possibly the start of a new
244 escape sequence.")
246 (defun ansi-color-filter-apply (string)
247 "Filter out all ANSI control sequences from STRING.
249 Every call to this function will set and use the buffer-local variable
250 `ansi-color-context' to save partial escape sequences. This information
251 will be used for the next call to `ansi-color-apply'. Set
252 `ansi-color-context' to nil if you don't want this.
254 This function can be added to `comint-preoutput-filter-functions'."
255 (let ((start 0) end result)
256 ;; if context was saved and is a string, prepend it
257 (if (cadr ansi-color-context)
258 (setq string (concat (cadr ansi-color-context) string)
259 ansi-color-context nil))
260 ;; find the next escape sequence
261 (while (setq end (string-match ansi-color-regexp string start))
262 (setq result (concat result (substring string start end))
263 start (match-end 0)))
264 ;; save context, add the remainder of the string to the result
265 (let (fragment)
266 (if (string-match "\033" string start)
267 (let ((pos (match-beginning 0)))
268 (setq fragment (substring string pos)
269 result (concat result (substring string start pos))))
270 (setq result (concat result (substring string start))))
271 (setq ansi-color-context (if fragment (list nil fragment))))
272 result))
274 (defun ansi-color--find-face (codes)
275 "Return the face corresponding to CODES."
276 (let (faces)
277 (while codes
278 (let ((face (ansi-color-get-face-1 (pop codes))))
279 ;; In the (default underline) face, say, the value of the
280 ;; "underline" attribute of the `default' face wins.
281 (unless (eq face 'default)
282 (push face faces))))
283 ;; Avoid some long-lived conses in the common case.
284 (if (cdr faces)
285 (nreverse faces)
286 (car faces))))
288 (defun ansi-color-apply (string)
289 "Translates SGR control sequences into text properties.
290 Delete all other control sequences without processing them.
292 Applies SGR control sequences setting foreground and background colors
293 to STRING using text properties and returns the result. The colors used
294 are given in `ansi-color-faces-vector' and `ansi-color-names-vector'.
295 See function `ansi-color-apply-sequence' for details.
297 Every call to this function will set and use the buffer-local variable
298 `ansi-color-context' to save partial escape sequences and current ansi codes.
299 This information will be used for the next call to `ansi-color-apply'.
300 Set `ansi-color-context' to nil if you don't want this.
302 This function can be added to `comint-preoutput-filter-functions'."
303 (let ((codes (car ansi-color-context))
304 (start 0) end escape-sequence result
305 colorized-substring)
306 ;; If context was saved and is a string, prepend it.
307 (if (cadr ansi-color-context)
308 (setq string (concat (cadr ansi-color-context) string)
309 ansi-color-context nil))
310 ;; Find the next escape sequence.
311 (while (setq end (string-match ansi-color-regexp string start))
312 (setq escape-sequence (match-string 1 string))
313 ;; Colorize the old block from start to end using old face.
314 (when codes
315 (put-text-property start end 'font-lock-face (ansi-color--find-face codes) string))
316 (setq colorized-substring (substring string start end)
317 start (match-end 0))
318 ;; Eliminate unrecognized ANSI sequences.
319 (while (string-match ansi-color-drop-regexp colorized-substring)
320 (setq colorized-substring
321 (replace-match "" nil nil colorized-substring)))
322 (push colorized-substring result)
323 ;; Create new face, by applying escape sequence parameters.
324 (setq codes (ansi-color-apply-sequence escape-sequence codes)))
325 ;; if the rest of the string should have a face, put it there
326 (when codes
327 (put-text-property start (length string)
328 'font-lock-face (ansi-color--find-face codes) string))
329 ;; save context, add the remainder of the string to the result
330 (let (fragment)
331 (if (string-match "\033" string start)
332 (let ((pos (match-beginning 0)))
333 (setq fragment (substring string pos))
334 (push (substring string start pos) result))
335 (push (substring string start) result))
336 (setq ansi-color-context (if (or codes fragment) (list codes fragment))))
337 (apply 'concat (nreverse result))))
339 ;; Working with regions
341 (defvar-local ansi-color-context-region nil
342 "Context saved between two calls to `ansi-color-apply-on-region'.
343 This is a list of the form (CODES MARKER) or nil. CODES
344 represents the state the last call to `ansi-color-apply-on-region'
345 ended with, currently a list of ansi codes, and MARKER is a
346 buffer position within an escape sequence or the last position
347 processed.")
349 (defun ansi-color-filter-region (begin end)
350 "Filter out all ANSI control sequences from region BEGIN to END.
352 Every call to this function will set and use the buffer-local variable
353 `ansi-color-context-region' to save position. This information will be
354 used for the next call to `ansi-color-apply-on-region'. Specifically,
355 it will override BEGIN, the start of the region. Set
356 `ansi-color-context-region' to nil if you don't want this."
357 (let ((end-marker (copy-marker end))
358 (start (or (cadr ansi-color-context-region) begin)))
359 (save-excursion
360 (goto-char start)
361 ;; Delete unrecognized escape sequences.
362 (while (re-search-forward ansi-color-drop-regexp end-marker t)
363 (replace-match ""))
364 (goto-char start)
365 ;; Delete SGR escape sequences.
366 (while (re-search-forward ansi-color-regexp end-marker t)
367 (replace-match ""))
368 ;; save context, add the remainder of the string to the result
369 (if (re-search-forward "\033" end-marker t)
370 (setq ansi-color-context-region (list nil (match-beginning 0)))
371 (setq ansi-color-context-region nil)))))
373 (defun ansi-color-apply-on-region (begin end)
374 "Translates SGR control sequences into overlays or extents.
375 Delete all other control sequences without processing them.
377 SGR control sequences are applied by calling the function
378 specified by `ansi-color-apply-face-function'. The default
379 function sets foreground and background colors to the text
380 between BEGIN and END, using overlays. The colors used are given
381 in `ansi-color-faces-vector' and `ansi-color-names-vector'. See
382 `ansi-color-apply-sequence' for details.
384 Every call to this function will set and use the buffer-local
385 variable `ansi-color-context-region' to save position and current
386 ansi codes. This information will be used for the next call to
387 `ansi-color-apply-on-region'. Specifically, it will override
388 BEGIN, the start of the region and set the face with which to
389 start. Set `ansi-color-context-region' to nil if you don't want
390 this."
391 (let ((codes (car ansi-color-context-region))
392 (start-marker (or (cadr ansi-color-context-region)
393 (copy-marker begin)))
394 (end-marker (copy-marker end))
395 escape-sequence)
396 ;; First, eliminate unrecognized ANSI control sequences.
397 (save-excursion
398 (goto-char start-marker)
399 (while (re-search-forward ansi-color-drop-regexp end-marker t)
400 (replace-match "")))
401 (save-excursion
402 (goto-char start-marker)
403 ;; Find the next SGR sequence.
404 (while (re-search-forward ansi-color-regexp end-marker t)
405 ;; Colorize the old block from start to end using old face.
406 (funcall ansi-color-apply-face-function
407 start-marker (match-beginning 0)
408 (ansi-color--find-face codes))
409 ;; store escape sequence and new start position
410 (setq escape-sequence (match-string 1)
411 start-marker (copy-marker (match-end 0)))
412 ;; delete the escape sequence
413 (replace-match "")
414 ;; Update the list of ansi codes.
415 (setq codes (ansi-color-apply-sequence escape-sequence codes)))
416 ;; search for the possible start of a new escape sequence
417 (if (re-search-forward "\033" end-marker t)
418 (progn
419 ;; if the rest of the region should have a face, put it there
420 (funcall ansi-color-apply-face-function
421 start-marker (point) (ansi-color--find-face codes))
422 ;; save codes and point
423 (setq ansi-color-context-region
424 (list codes (copy-marker (match-beginning 0)))))
425 ;; if the rest of the region should have a face, put it there
426 (funcall ansi-color-apply-face-function
427 start-marker end-marker (ansi-color--find-face codes))
428 (setq ansi-color-context-region (if codes (list codes)))))))
430 (defun ansi-color-apply-overlay-face (beg end face)
431 "Make an overlay from BEG to END, and apply face FACE.
432 If FACE is nil, do nothing."
433 (when face
434 (ansi-color-set-extent-face
435 (ansi-color-make-extent beg end)
436 face)))
438 ;; This function helps you look for overlapping overlays. This is
439 ;; useful in comint-buffers. Overlapping overlays should not happen!
440 ;; A possible cause for bugs are the markers. If you create an overlay
441 ;; up to the end of the region, then that end might coincide with the
442 ;; process-mark. As text is added BEFORE the process-mark, the overlay
443 ;; will keep growing. Therefore, as more overlays are created later on,
444 ;; there will be TWO OR MORE overlays covering the buffer at that point.
445 ;; This function helps you check your buffer for these situations.
446 ; (defun ansi-color-debug-overlays ()
447 ; (interactive)
448 ; (let ((pos (point-min)))
449 ; (while (< pos (point-max))
450 ; (if (<= 2 (length (overlays-at pos)))
451 ; (progn
452 ; (goto-char pos)
453 ; (error "%d overlays at %d" (length (overlays-at pos)) pos))
454 ; (let (message-log-max)
455 ; (message "Reached %d." pos)))
456 ; (setq pos (next-overlay-change pos)))))
458 ;; Emacs/XEmacs compatibility layer
460 (defun ansi-color-make-face (property color)
461 "Return a face with PROPERTY set to COLOR.
462 PROPERTY can be either symbol `foreground' or symbol `background'.
464 For Emacs, we just return the cons cell (PROPERTY . COLOR).
465 For XEmacs, we create a temporary face and return it."
466 (if (featurep 'xemacs)
467 (let ((face (make-face (intern (concat color "-" (symbol-name property)))
468 "Temporary face created by ansi-color."
469 t)))
470 (set-face-property face property color)
471 face)
472 (cond ((eq property 'foreground)
473 (cons 'foreground-color color))
474 ((eq property 'background)
475 (cons 'background-color color))
477 (cons property color)))))
479 (defun ansi-color-make-extent (from to &optional object)
480 "Make an extent for the range [FROM, TO) in OBJECT.
482 OBJECT defaults to the current buffer. XEmacs uses `make-extent', Emacs
483 uses `make-overlay'. XEmacs can use a buffer or a string for OBJECT,
484 Emacs requires OBJECT to be a buffer."
485 (if (fboundp 'make-extent)
486 (make-extent from to object)
487 ;; In Emacs, the overlay might end at the process-mark in comint
488 ;; buffers. In that case, new text will be inserted before the
489 ;; process-mark, ie. inside the overlay (using insert-before-marks).
490 ;; In order to avoid this, we use the `insert-behind-hooks' overlay
491 ;; property to make sure it works.
492 (let ((overlay (make-overlay from to object)))
493 (overlay-put overlay 'modification-hooks '(ansi-color-freeze-overlay))
494 overlay)))
496 (defun ansi-color-freeze-overlay (overlay is-after begin end &optional len)
497 "Prevent OVERLAY from being extended.
498 This function can be used for the `modification-hooks' overlay
499 property."
500 ;; if stuff was inserted at the end of the overlay
501 (when (and is-after
502 (= 0 len)
503 (= end (overlay-end overlay)))
504 ;; reset the end of the overlay
505 (move-overlay overlay (overlay-start overlay) begin)))
507 (defun ansi-color-set-extent-face (extent face)
508 "Set the `face' property of EXTENT to FACE.
509 XEmacs uses `set-extent-face', Emacs uses `overlay-put'."
510 (if (featurep 'xemacs)
511 (set-extent-face extent face)
512 (overlay-put extent 'face face)))
514 ;; Helper functions
516 (defsubst ansi-color-parse-sequence (escape-seq)
517 "Return the list of all the parameters in ESCAPE-SEQ.
519 ESCAPE-SEQ is a SGR control sequences such as \\033[34m. The parameter
520 34 is used by `ansi-color-get-face-1' to return a face definition.
522 Returns nil only if there's no match for `ansi-color-parameter-regexp'."
523 (let ((i 0)
524 codes val)
525 (while (string-match ansi-color-parameter-regexp escape-seq i)
526 (setq i (match-end 0)
527 val (string-to-number (match-string 1 escape-seq) 10))
528 ;; It so happens that (string-to-number "") => 0.
529 (push val codes))
530 (nreverse codes)))
532 (defun ansi-color-apply-sequence (escape-sequence codes)
533 "Apply ESCAPE-SEQUENCE to CODES and return the new list of codes.
535 ESCAPE-SEQUENCE is an escape sequence parsed by
536 `ansi-color-parse-sequence'.
538 For each new code, the following happens: if it is 1-7, add it to
539 the list of codes; if it is 21-25 or 27, delete appropriate
540 parameters from the list of codes; if it is 30-37 resp. 39, the
541 foreground color code is replaced or added resp. deleted; if it
542 is 40-47 resp. 49, the background color code is replaced or added
543 resp. deleted; any other code is discarded together with the old
544 codes. Finally, the so changed list of codes is returned."
545 (let ((new-codes (ansi-color-parse-sequence escape-sequence)))
546 (while new-codes
547 (let* ((new (pop new-codes))
548 (q (/ new 10)))
549 (setq codes
550 (pcase q
551 (0 (unless (memq new '(0 8 9))
552 (cons new (remq new codes))))
553 (2 (unless (memq new '(20 26 28 29))
554 ;; The standard says `21 doubly underlined' while
555 ;; http://en.wikipedia.org/wiki/ANSI_escape_code claims
556 ;; `21 Bright/Bold: off or Underline: Double'.
557 (remq (- new 20) (pcase new
558 (22 (remq 1 codes))
559 (25 (remq 6 codes))
560 (_ codes)))))
561 ((or 3 4) (let ((r (mod new 10)))
562 (unless (= r 8)
563 (let (beg)
564 (while (and codes (/= q (/ (car codes) 10)))
565 (push (pop codes) beg))
566 (setq codes (nconc (nreverse beg) (cdr codes)))
567 (if (= r 9)
568 codes
569 (cons new codes))))))
570 (_ nil)))))
571 codes))
573 (defun ansi-color-make-color-map ()
574 "Creates a vector of face definitions and returns it.
576 The index into the vector is an ANSI code. See the documentation of
577 `ansi-color-map' for an example.
579 The face definitions are based upon the variables
580 `ansi-color-faces-vector' and `ansi-color-names-vector'."
581 (let ((map (make-vector 50 nil))
582 (index 0))
583 ;; miscellaneous attributes
584 (mapc
585 (function (lambda (e)
586 (aset map index e)
587 (setq index (1+ index)) ))
588 ansi-color-faces-vector)
589 ;; foreground attributes
590 (setq index 30)
591 (mapc
592 (function (lambda (e)
593 (aset map index
594 (ansi-color-make-face 'foreground
595 (if (consp e) (car e) e)))
596 (setq index (1+ index)) ))
597 ansi-color-names-vector)
598 ;; background attributes
599 (setq index 40)
600 (mapc
601 (function (lambda (e)
602 (aset map index
603 (ansi-color-make-face 'background
604 (if (consp e) (cdr e) e)))
605 (setq index (1+ index)) ))
606 ansi-color-names-vector)
607 map))
609 (defvar ansi-color-map (ansi-color-make-color-map)
610 "A brand new color map suitable for `ansi-color-get-face'.
612 The value of this variable is usually constructed by
613 `ansi-color-make-color-map'. The values in the array are such that the
614 numbers included in an SGR control sequences point to the correct
615 foreground or background colors.
617 Example: The sequence \\033[34m specifies a blue foreground. Therefore:
618 (aref ansi-color-map 34)
619 => (foreground-color . \"blue\")")
621 (defun ansi-color-map-update (symbol value)
622 "Update `ansi-color-map'.
624 Whenever the vectors used to construct `ansi-color-map' are changed,
625 this function is called. Therefore this function is listed as the :set
626 property of `ansi-color-faces-vector' and `ansi-color-names-vector'."
627 (set-default symbol value)
628 (setq ansi-color-map (ansi-color-make-color-map)))
630 (defun ansi-color-get-face-1 (ansi-code)
631 "Get face definition from `ansi-color-map'.
632 ANSI-CODE is used as an index into the vector."
633 (condition-case nil
634 (aref ansi-color-map ansi-code)
635 (args-out-of-range nil)))
637 (provide 'ansi-color)
639 ;;; ansi-color.el ends here