diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9b68897a32b..ed95c03d6ea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-12-18 Leo Liu + + * eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186) + 2013-12-18 Eli Zaretskii * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f diff --git a/lisp/eshell/em-prompt.el b/lisp/eshell/em-prompt.el index 1092eb5b4de..91c3daf87e4 100644 --- a/lisp/eshell/em-prompt.el +++ b/lisp/eshell/em-prompt.el @@ -125,8 +125,8 @@ arriving, or after." (add-text-properties 0 (length prompt) '(read-only t font-lock-face eshell-prompt - front-sticky (face read-only) - rear-nonsticky (face read-only)) + front-sticky (font-lock-face read-only) + rear-nonsticky (font-lock-face read-only)) prompt)) (eshell-interactive-print prompt))) (run-hooks 'eshell-after-prompt-hook))