diff options
| author | Leo Liu | 2013-12-17 23:15:00 +0800 |
|---|---|---|
| committer | Leo Liu | 2013-12-17 23:15:00 +0800 |
| commit | 2b84d7639569b9476aa32c8301cb25dd58792e0f (patch) | |
| tree | a35ee52f7561aaf9faf255217c8c862f285fda92 /lisp/eshell | |
| parent | e2f6a0bc3478ee7a0fcfc31e77316aa2e054a162 (diff) | |
| download | emacs-2b84d7639569b9476aa32c8301cb25dd58792e0f.tar.gz emacs-2b84d7639569b9476aa32c8301cb25dd58792e0f.zip | |
* net/rcirc.el (rcirc-add-face):
* eshell/em-prompt.el (eshell-emit-prompt):
* eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
Fixes: debbugs:16167
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/em-ls.el | 2 | ||||
| -rw-r--r-- | lisp/eshell/em-prompt.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el index 06c519c104b..34ca3b39eb2 100644 --- a/lisp/eshell/em-ls.el +++ b/lisp/eshell/em-ls.el | |||
| @@ -919,7 +919,7 @@ to use, and each member of which is the width of that column | |||
| 919 | value))))) | 919 | value))))) |
| 920 | (if face | 920 | (if face |
| 921 | (add-text-properties 0 (length (car file)) | 921 | (add-text-properties 0 (length (car file)) |
| 922 | (list 'face face) | 922 | (list 'font-lock-face face) |
| 923 | (car file))))) | 923 | (car file))))) |
| 924 | (car file)) | 924 | (car file)) |
| 925 | 925 | ||
diff --git a/lisp/eshell/em-prompt.el b/lisp/eshell/em-prompt.el index e79c7d7ba63..1092eb5b4de 100644 --- a/lisp/eshell/em-prompt.el +++ b/lisp/eshell/em-prompt.el | |||
| @@ -124,7 +124,7 @@ arriving, or after." | |||
| 124 | (and eshell-highlight-prompt | 124 | (and eshell-highlight-prompt |
| 125 | (add-text-properties 0 (length prompt) | 125 | (add-text-properties 0 (length prompt) |
| 126 | '(read-only t | 126 | '(read-only t |
| 127 | face eshell-prompt | 127 | font-lock-face eshell-prompt |
| 128 | front-sticky (face read-only) | 128 | front-sticky (face read-only) |
| 129 | rear-nonsticky (face read-only)) | 129 | rear-nonsticky (face read-only)) |
| 130 | prompt)) | 130 | prompt)) |