summaryrefslogtreecommitdiff
path: root/support/texlab/crates/texlab/src/server/options.rs
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-01-21 03:01:05 +0000
committerNorbert Preining <norbert@preining.info>2024-01-21 03:01:05 +0000
commitb2fc73208c72c65ca8f9ce068898291b69322d32 (patch)
treec5027d520af6b383a642459af510e38224cf97d5 /support/texlab/crates/texlab/src/server/options.rs
parent2fd07558ccd8d3c8e354f8ea0b342ef7ac1e87a3 (diff)
CTAN sync 202401210301
Diffstat (limited to 'support/texlab/crates/texlab/src/server/options.rs')
-rw-r--r--support/texlab/crates/texlab/src/server/options.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/support/texlab/crates/texlab/src/server/options.rs b/support/texlab/crates/texlab/src/server/options.rs
index c718e49c16..72b2b127fb 100644
--- a/support/texlab/crates/texlab/src/server/options.rs
+++ b/support/texlab/crates/texlab/src/server/options.rs
@@ -1,4 +1,3 @@
-use std::path::PathBuf;
use std::time::Duration;
use base_db::{Config, Formatter, SynctexConfig};
@@ -187,7 +186,7 @@ impl From<Options> for Config {
.log_directory
.unwrap_or_else(|| config.build.pdf_dir.clone());
- config.build.output_filename = value.build.filename.map(PathBuf::from);
+ config.build.output_filename = value.build.filename;
config.diagnostics.allowed_patterns = value
.diagnostics