While (setq ediff-diff-options "-w") can hit the nail, it can hide the error on other days.
Menu
ediff suggests using # # to switch the difference in spaces.
With enabled move commands without spaces ( n / p ) skips hunks only with differences in spaces.
Emacs, by default, highlights non-whitespace differences across faces. But by default they have the same colors, not different from each other. To make them visible, use something like:
(set-face-foreground 'diff-added-face "DarkGreen") (set-face-foreground 'diff-removed-face "DarkRed") (set-face-background 'diff-refine-change "LightBlue1")
Also try executing the h command in the ediff control buffer.
This does not answer your direct question, but makes it pointless.
source share