Fix libxkbcommon-devel package name for openSUSE

Fixes #5586.
This commit is contained in:
Diego Garza 2021-11-02 15:32:53 -06:00 committed by GitHub
parent 1df7dc5171
commit 33db289f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -125,7 +125,7 @@ a `zypper` command that should install all of them. If something is
still found to be missing, please open an issue. still found to be missing, please open an issue.
```sh ```sh
zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-dev zypper install cmake freetype-devel fontconfig-devel libxcb-devel libxkbcommon-devel
``` ```
#### Slackware #### Slackware

View File

@ -80,7 +80,7 @@ pub fn watch(mut paths: Vec<PathBuf>, event_proxy: EventLoopProxy<Event>) {
// Always reload the primary configuration file. // Always reload the primary configuration file.
let event = Event::new(EventType::ConfigReload(paths[0].clone()), None); let event = Event::new(EventType::ConfigReload(paths[0].clone()), None);
let _ = event_proxy.send_event(event); let _ = event_proxy.send_event(event);
} },
_ => (), _ => (),
} }
} }

View File

@ -407,7 +407,7 @@ where
break 'event_loop; break 'event_loop;
} }
} }
} },
_ => (), _ => (),
} }
} }

View File

@ -291,7 +291,7 @@ impl<T> Term<T> {
&& iter.point().column < self.last_column() => && iter.point().column < self.last_column() =>
{ {
iter.next(); iter.next();
} },
Direction::Right if cell.flags.contains(Flags::LEADING_WIDE_CHAR_SPACER) => { Direction::Right if cell.flags.contains(Flags::LEADING_WIDE_CHAR_SPACER) => {
if let Some(Indexed { cell: new_cell, .. }) = iter.next() { if let Some(Indexed { cell: new_cell, .. }) = iter.next() {
*cell = new_cell; *cell = new_cell;