emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] term.el make bold face customizable


From: Stefan Monnier
Subject: Re: [PATCH] term.el make bold face customizable
Date: Wed, 23 Sep 2009 16:52:30 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

> Could you apply the following trivial patch?

> +(defvar term-bold-attribute '(:weight bold)
> +  "Set to '(:weight normal) to disable bold")

Better yet:

  (defface term-bold-face '((t :weight bold)))

and then

[...]
-             (setq term-current-face
-                   (append '(:weight bold) term-current-face)))
+             (push term-bold-face term-current-face))
[...]


        Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]