Skip to content

Commit

Permalink
editors/neovim-gtk: fix the build with Rust 1.80.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers authored and nanorkyo committed Aug 31, 2024
1 parent 54fa9d1 commit 461fdef
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions editors/neovim-gtk/files/patch-src_ui.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- src/ui.rs.orig 2024-08-27 21:04:49 UTC
+++ src/ui.rs
@@ -385,7 +385,7 @@ impl Ui {
files_list
.iter()
.map(|f| misc::escape_filename(f))
- .collect::<Box<_>>()
+ .collect::<Box<[_]>>()
.join(" ")
));
} else {

0 comments on commit 461fdef

Please sign in to comment.