nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 95002da66c258477e09dde7297bed533c9f1b16c
parent 858663444ecb261d362222b8227065551cdfcc68
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun,  6 May 2018 20:01:53 +0200

tweaks: normalize indentation and whitespace after previous changes

Diffstat:
Msrc/move.c | 14+++++++-------
Msrc/nano.c | 14+++++++-------
Msrc/prompt.c | 12++++++------
3 files changed, 20 insertions(+), 20 deletions(-)

diff --git 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 @@ -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 @@ -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; } }