File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ edition = "2024"
1010include = [
1111 " src/**/*.rs" ,
1212 " src/**/*.asn1" ,
13- " data/*" ,
13+ " src/editor/ data/*" ,
1414 " Cargo.toml" ,
1515 " AUTHORS" ,
1616 " COPYING" ,
File renamed without changes.
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ impl Editor {
203203 let system_dicts = match sys_loader. load ( enabled_dicts) {
204204 Ok ( d) => d,
205205 Err ( e) => {
206- let builtin = Trie :: new ( & include_bytes ! ( "../../capi/ data/mini.dat" ) [ ..] ) ;
206+ let builtin = Trie :: new ( & include_bytes ! ( "data/mini.dat" ) [ ..] ) ;
207207 error ! ( "Failed to load system dict: {e}" ) ;
208208 error ! ( "Loading builtin minimum dictionary..." ) ;
209209 // NB: we can unwrap because the built-in dictionary should always
You can’t perform that action at this time.
0 commit comments