el/dot-emacs.el: Make the continued-line backslash actually be a `\'.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 3 Nov 2015 19:14:44 +0000 (19:14 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 3 Nov 2015 19:14:44 +0000 (19:14 +0000)
I botched the escaping for `?', so it actually came out as a space.

el/dot-emacs.el

index 7e55329..e898597 100644 (file)
@@ -1230,7 +1230,7 @@ doesn't match any of the regular expressions in
 (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)