mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-23 22:26:21 +00:00
Format code correctly
This commit is contained in:
@@ -811,9 +811,10 @@ _inp_rl_win_next_unread_handler(int count, int key)
|
||||
}
|
||||
|
||||
static int
|
||||
_inp_rl_win_attention_handler(int count, int key) {
|
||||
_inp_rl_win_attention_handler(int count, int key)
|
||||
{
|
||||
ProfWin* current = wins_get_current();
|
||||
if ( current ) {
|
||||
if (current) {
|
||||
gboolean attention = win_toggle_attention(current);
|
||||
if (attention) {
|
||||
win_println(current, THEME_DEFAULT, "!", "Attention flag has been activated");
|
||||
@@ -826,7 +827,8 @@ _inp_rl_win_attention_handler(int count, int key) {
|
||||
}
|
||||
|
||||
static int
|
||||
_inp_rl_win_attention_next_handler(int count, int key) {
|
||||
_inp_rl_win_attention_next_handler(int count, int key)
|
||||
{
|
||||
ProfWin* window = wins_get_next_attention();
|
||||
if (window) {
|
||||
ui_focus_win(window);
|
||||
@@ -834,7 +836,6 @@ _inp_rl_win_attention_next_handler(int count, int key) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
_inp_rl_win_pageup_handler(int count, int key)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user