mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 04:20:46 +00:00
bugfix: fix LineEnding for windows (#6688)
fixes a bug when compiling on windows ![image](https://github.com/zed-industries/zed/assets/715417/5a35b1b2-29f4-4987-9410-730c9b287f82) Release Notes: - Fixed: compilation error related to `LineEnding` on Windows
This commit is contained in:
commit
c6e7cf1cbc
1 changed files with 1 additions and 1 deletions
|
@ -2634,7 +2634,7 @@ impl Default for LineEnding {
|
|||
return Self::Unix;
|
||||
|
||||
#[cfg(not(unix))]
|
||||
return Self::CRLF;
|
||||
return Self::Windows;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue