From 95002da66c258477e09dde7297bed533c9f1b16c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 6 May 2018 20:01:53 +0200 Subject: [PATCH] tweaks: normalize indentation and whitespace after previous changes --- src/move.c | 14 +++++++------- src/nano.c | 14 +++++++------- src/prompt.c | 12 ++++++------ 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/move.c b/src/move.c index b7d4fe30..93cc4458 100644 --- a/src/move.c +++ b/src/move.c @@ -316,7 +316,7 @@ void do_prev_word(bool allow_punct, bool update_screen) /* Move to the next word. If after_ends is TRUE, stop at the ends of words * instead of their beginnings. If allow_punct is TRUE, treat punctuation - * as part of a word. When requested, update the screen afterwards. + * as part of a word. When requested, update the screen afterwards. * Return TRUE if we started on a word, and FALSE otherwise. */ bool do_next_word(bool after_ends, bool allow_punct, bool update_screen) { @@ -354,13 +354,13 @@ bool do_next_word(bool after_ends, bool allow_punct, bool update_screen) } else #endif { - /* If this is not a word character, then it's a separator; else - * if we've already seen a separator, then it's a word start. */ - if (!is_word_mbchar(openfile->current->data + openfile->current_x, + /* If this is not a word character, then it's a separator; else + * if we've already seen a separator, then it's a word start. */ + if (!is_word_mbchar(openfile->current->data + openfile->current_x, allow_punct)) - seen_space = TRUE; - else if (seen_space) - break; + seen_space = TRUE; + else if (seen_space) + break; } } diff --git a/src/nano.c b/src/nano.c index 4feb8524..970d5cf3 100644 --- a/src/nano.c +++ b/src/nano.c @@ -1217,13 +1217,13 @@ void signal_init(void) #ifndef DEBUG if (getenv("NANO_NOCATCH") == NULL) { - /* Trap SIGSEGV and SIGABRT to save any changed buffers and reset - * the terminal to a usable state. Reset these handlers to their - * defaults as soon as their signal fires. */ - act.sa_handler = handle_crash; - act.sa_flags |= SA_RESETHAND; - sigaction(SIGSEGV, &act, NULL); - sigaction(SIGABRT, &act, NULL); + /* Trap SIGSEGV and SIGABRT to save any changed buffers and reset + * the terminal to a usable state. Reset these handlers to their + * defaults as soon as their signal fires. */ + act.sa_handler = handle_crash; + act.sa_flags |= SA_RESETHAND; + sigaction(SIGSEGV, &act, NULL); + sigaction(SIGABRT, &act, NULL); } #endif } diff --git a/src/prompt.c b/src/prompt.c index b14e8592..50161bc0 100644 --- a/src/prompt.c +++ b/src/prompt.c @@ -307,12 +307,12 @@ void do_statusbar_next_word(void) else if (seen_word) break; } else { - /* If this is not a word character, then it's a separator; else - * if we've already seen a separator, then it's a word start. */ - if (!is_word_mbchar(answer + statusbar_x, FALSE)) - seen_space = TRUE; - else if (seen_space) - break; + /* If this is not a word character, then it's a separator; else + * if we've already seen a separator, then it's a word start. */ + if (!is_word_mbchar(answer + statusbar_x, FALSE)) + seen_space = TRUE; + else if (seen_space) + break; } }