Skip to content

Commit f11ee56

Browse files
committed
Merge pull request #501 from bryangarza/git-hunk-markers
Correct marker regexes
2 parents 7fa3158 + 44865d1 commit f11ee56

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

haskell-font-lock.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,8 @@ Returns keywords suitable for `font-lock-keywords'."
372372
`(;; NOTICE the ordering below is significant
373373
;;
374374
("^<<<<<<< .*$" 0 'font-lock-warning-face t)
375-
("^======= .*$" 0 'font-lock-warning-face t)
375+
("^|||||||$" 0 'font-lock-warning-face t) ; "diff3" style
376+
("^=======$" 0 'font-lock-warning-face t)
376377
("^>>>>>>> .*$" 0 'font-lock-warning-face t)
377378
("^#.*$" 0 'font-lock-preprocessor-face t)
378379

0 commit comments

Comments
 (0)