chiark / gitweb /
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 7e55329adc13a9e40b499c00a47a4186d0a05303..e89859782fb8be7aeabde60b178d686a00edc316 100644 (file)
@@ -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)