mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
Amend typos
This commit is contained in:
parent
1d3cbe9f27
commit
939c7b2d52
|
@ -96,7 +96,7 @@ char **split_args(const char *start, int *argc) {
|
||||||
bool in_token = false;
|
bool in_token = false;
|
||||||
bool in_string = false;
|
bool in_string = false;
|
||||||
bool in_char = false;
|
bool in_char = false;
|
||||||
bool in_brackets = false; // brackets are used for critera
|
bool in_brackets = false; // brackets are used for criteria
|
||||||
bool escaped = false;
|
bool escaped = false;
|
||||||
const char *end = start;
|
const char *end = start;
|
||||||
if (start) {
|
if (start) {
|
||||||
|
|
|
@ -596,7 +596,7 @@ static void damage_handle_frame(struct wl_listener *listener, void *user_data) {
|
||||||
// We only check tv_sec because if the predicted refresh time is less
|
// We only check tv_sec because if the predicted refresh time is less
|
||||||
// than a second before the current time, then msec_until_refresh will
|
// than a second before the current time, then msec_until_refresh will
|
||||||
// end up slightly below zero, which will effectively disable the delay
|
// end up slightly below zero, which will effectively disable the delay
|
||||||
// without potential disasterous negative overflows that could occur if
|
// without potential disastrous negative overflows that could occur if
|
||||||
// tv_sec was not checked.
|
// tv_sec was not checked.
|
||||||
if (predicted_refresh.tv_sec >= now.tv_sec) {
|
if (predicted_refresh.tv_sec >= now.tv_sec) {
|
||||||
long nsec_until_refresh
|
long nsec_until_refresh
|
||||||
|
|
|
@ -188,7 +188,7 @@ static int entry_handler(char *group, char *key, char *value,
|
||||||
* This is a Freedesktop Desktop Entry parser (essentially INI)
|
* This is a Freedesktop Desktop Entry parser (essentially INI)
|
||||||
* It calls entry_handler for every entry
|
* It calls entry_handler for every entry
|
||||||
* and group_handler between every group (as well as at both ends)
|
* and group_handler between every group (as well as at both ends)
|
||||||
* Handlers return whether an error occured, which stops parsing
|
* Handlers return whether an error occurred, which stops parsing
|
||||||
*/
|
*/
|
||||||
static struct icon_theme *read_theme_file(char *basedir, char *theme_name) {
|
static struct icon_theme *read_theme_file(char *basedir, char *theme_name) {
|
||||||
// look for index.theme file
|
// look for index.theme file
|
||||||
|
|
Loading…
Reference in a new issue