Skip to content

Commit

Permalink
Better documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ralismark committed Sep 4, 2021
1 parent 526ff57 commit 6faaa53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/v2cli/compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ the set of unstable options is subject to change at any time.
| `-Z min-crossrefs=<num>` | Equivalent to bibtex's `-min-crossrefs` flag. Default vaue: 2 |
| `-Z paper-size=<spec>` | Change the initial paper size. Default: `letter` |
| `-Z shell-escape` | Enable `\write18` (unless `--untrusted` has been specified) |
| `-Z search-path=<path>` | Also look in <path> for files, like TEXINPUTS. Can be specified multiple times |
| `-Z search-path=<path>` | Also look in <path> for files (unless `--untrusted` has been specified), like TEXINPUTS. Can be specified multiple times |
3 changes: 2 additions & 1 deletion src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,8 @@ macro_rules! bridgestate_ioprovider_cascade {
bridgestate_ioprovider_try!(p, $($inner)+);
}

// extra search paths
// Extra search paths. This has higher priority than bundles but lower than current
// working dir to support the use case of overriding broken bundles (see issue #816).
for fsio in $self.extra_search_paths.iter_mut() {
bridgestate_ioprovider_try!(fsio, $($inner)+);
}
Expand Down

0 comments on commit 6faaa53

Please sign in to comment.