jcubic
jcubic

Reputation: 66590

Emacs ERC buffer have no color

I don't know what happen, but when I reinstall the system (Xubuntu 14.04) with Emacs 24.3.1 and when I run erc, I got no colors. When I run ERC last time I have blue text now I got white. How can I check what's happened? I didn't run ERC for a while, maybe I change something in .emacs file.

Upvotes: 0

Views: 174

Answers (1)

jcubic
jcubic

Reputation: 66590

In my case the problem was whitespace-mode I've added erc-mode to the list where whitespace-mode is disabled:

(setq whitespace-mode-disable '(term-mode erc-mode))

(add-hook 'after-change-major-mode-hook
          (lambda ()
            (if (null (memql major-mode whitespace-mode-disable))
                (whitespace-mode))))

Upvotes: 1

Related Questions