To add this by default, I made diff-cmd point to this script I called gcc-diffBTW: Is there a way to include a C function heading in diff output? I have tried'svn diff -x -p' to get: svn: '-p' is not supported
#! /bin/sh case "$1" in -u|-U*) exec diff -p "$@" ;; -c|-C*) exec diff -p "$@" ;; -p) exec diff -u "$@" ;; *) exec diff -up "$@" ;; esac Paolo