| 2039 | } |
| 2040 | |
| 2041 | static int dotdot_missing(const char *full_name, |
| 2042 | struct rev_info *revs, int symmetric) |
| 2043 | { |
| 2044 | if (revs->ignore_missing) |
| 2045 | return 0; |
| 2046 | die(symmetric |
| 2047 | ? "Invalid symmetric difference expression %s" |
| 2048 | : "Invalid revision range %s", full_name); |
| 2049 | } |
| 2050 | |
| 2051 | static int handle_dotdot_1(const char *a_name, const char *b_name, |
| 2052 | const char *full_name, int symmetric, |
no test coverage detected