* shell.el (shell): Require ansi-color (Bug#5113).

* ansi-color.el (ansi-color-for-comint-mode): Default to t.
This commit is contained in:
Chong Yidong 2009-12-05 21:05:51 +00:00
parent 503edac9d6
commit 925f8c7066
3 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,9 @@
2009-12-05 Chong Yidong <cyd@stupidchicken.com>
* shell.el (shell): Require ansi-color (Bug#5113).
* ansi-color.el (ansi-color-for-comint-mode): Default to t.
* hl-line.el (global-hl-line-highlight): Minor doc fix (Bug#4925).
2009-12-05 Alan Mackenzie <acm@muc.de>

View file

@ -157,7 +157,7 @@ map. This color map is stored in the variable `ansi-color-map'."
;; Convenience functions for comint modes (eg. shell-mode)
(defcustom ansi-color-for-comint-mode nil
(defcustom ansi-color-for-comint-mode t
"Determines what to do with comint output.
If nil, do nothing.
If the symbol `filter', then filter all SGR control sequences.

View file

@ -554,6 +554,7 @@ Otherwise, one argument `-i' is passed to the shell.
(read-file-name
"Default directory: " default-directory default-directory
t nil 'file-directory-p))))))))
(require 'ansi-color)
(setq buffer (get-buffer-create (or buffer "*shell*")))
;; Pop to buffer, so that the buffer's window will be correctly set
;; when we call comint (so that comint sets the COLUMNS env var properly).