From f52d246ee05e9e2f617d9c7c1499e80216bd343c Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sun, 12 Jan 2014 22:04:30 +0900 Subject: [PATCH] fix eshell prompt face --- emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index 1d5f9a7..6fd9ce0 100644 --- a/emacs.el +++ b/emacs.el @@ -1814,10 +1814,10 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer." "$ ")) (add-text-properties p1 p2 - '(face ((underline . t)))) + '(face underline)) (add-text-properties p3 p4 - '(face ((underline . t)))) + '(face underline)) (buffer-substring (point-min) (point-max))))))