From: Mark Wooding Date: Tue, 3 Nov 2015 19:14:44 +0000 (+0000) Subject: el/dot-emacs.el: Make the continued-line backslash actually be a `\'. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/a8a7976a2e808307de201c7f14be012d241614a4 el/dot-emacs.el: Make the continued-line backslash actually be a `\'. I botched the escaping for `?', so it actually came out as a space. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 7e55329..e898597 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -1230,7 +1230,7 @@ (mdw-define-face whizzy-error-face (mdw-define-face mdw-ellipsis-face (((type tty)) :foreground "blue") (t :foreground "grey60")) (let ((dollar (make-glyph-code ?$ 'mdw-ellipsis-face)) - (backslash (make-glyph-code ?\ 'mdw-ellipsis-face)) + (backslash (make-glyph-code ?\\ 'mdw-ellipsis-face)) (dot (make-glyph-code ?. 'mdw-ellipsis-face)) (bar (make-glyph-code ?| mdw-ellipsis-face))) (set-display-table-slot standard-display-table 0 dollar)