]> git.cworth.org Git - notmuch-wiki/commitdiff
emacs tips: cosmetic fixup
authorJani Nikula <jani@nikula.org>
Mon, 1 Oct 2012 08:43:50 +0000 (10:43 +0200)
committerJani Nikula <jani@nikula.org>
Mon, 1 Oct 2012 08:43:50 +0000 (10:43 +0200)
emacstips.mdwn

index 2cc8aac748e2851ae364743567518cabacacfa49..a2c0b24c333a035e846f236cb7ec0183311e635a 100644 (file)
@@ -584,7 +584,7 @@ buffer.
 
 Mailman mailing list software rewrites and rewraps long message subjects in
 a way that causes TABs to appear in the middle of the subject and header
-lines. Add this to your .emacs to replace tabs with spaces in subject
+lines. Add this to your `.emacs` to replace tabs with spaces in subject
 lines:
 
        (defun notmuch-show-subject-tabs-to-spaces ()
@@ -602,7 +602,7 @@ notmuch version 0.15):
        (defun notmuch-show-header-tabs-to-spaces ()
          "Replace tabs with spaces in header line."
          (setq header-line-format
-         (notmuch-show-strip-re
-          (replace-regexp-in-string "\t" " " (notmuch-show-get-subject)))))
+               (notmuch-show-strip-re
+                (replace-regexp-in-string "\t" " " (notmuch-show-get-subject)))))
 
        (add-hook 'notmuch-show-hook 'notmuch-show-header-tabs-to-spaces)