Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/diff-tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
"tempFile.txt" "targetFile.txt" /nh /diffonly /dn1:tempFile.txt /dn2:targetFile.txt
```
* Scanned paths:
* `%ProgramFiles%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramW6432%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramFiles(x86)%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramFiles%\ExamDiff Pro*\ExamDiff.exe`
* `%ProgramW6432%\ExamDiff Pro*\ExamDiff.exe`
* `%ProgramFiles(x86)%\ExamDiff Pro*\ExamDiff.exe`
* `%PATH%ExamDiff.exe`

### [Guiffy](https://www.guiffy.com/)
Expand Down
6 changes: 3 additions & 3 deletions src/DiffEngine.Tests/diffTools.include.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ Non-MDI tools are preferred since it allows [DiffEngineTray](tray.md) to track a
"tempFile.txt" "targetFile.txt" /nh /diffonly /dn1:tempFile.txt /dn2:targetFile.txt
```
* Scanned paths:
* `%ProgramFiles%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramW6432%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramFiles(x86)%\ExamDiff Pro\ExamDiff.exe`
* `%ProgramFiles%\ExamDiff Pro*\ExamDiff.exe`
* `%ProgramW6432%\ExamDiff Pro*\ExamDiff.exe`
* `%ProgramFiles(x86)%\ExamDiff Pro*\ExamDiff.exe`
* `%PATH%ExamDiff.exe`

### [Guiffy](https://www.guiffy.com/)
Expand Down
2 changes: 1 addition & 1 deletion src/DiffEngine/Implementation/ExamDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static string RightArguments(string temp, string target)
Windows: new(
"ExamDiff.exe",
new(LeftArguments, RightArguments),
@"%ProgramFiles%\ExamDiff Pro\")),
@"%ProgramFiles%\ExamDiff Pro*\")),
Notes: """
* [Command line reference](https://www.prestosoft.com/ps.asp?page=htmlhelp/edp/command_line_options)
* `/nh`: do not add files or directories to comparison history
Expand Down