Projects STRLCPY alacritty Commits e05dc3ad
🤬
  • ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 40 lines
    41 41  - Vi cursor on topmost of the display moving downward when scrolled into history with active output
    42 42  - Input lag on Wayland with Nvidia binary driver
    43 43  - Crash when hovering the mouse over fullwidth characters
     44 +- Do not create logfile if the file already exists
    44 45   
    45 46  ### Removed
    46 47   
    skipped 926 lines
  • ■ ■ ■ ■
    alacritty/src/logging.rs
    skipped 183 lines
    184 184   
    185 185   // Create the file if it doesn't exist yet.
    186 186   if self.file.is_none() {
    187  - let file = OpenOptions::new().append(true).create(true).open(&self.path);
     187 + let file = OpenOptions::new().append(true).create_new(true).open(&self.path);
    188 188   
    189 189   match file {
    190 190   Ok(file) => {
    skipped 30 lines
Please wait...
Page is in error, reload to recover