mirror of
https://github.com/vim/vim.git
synced 2025-10-28 09:27:14 -04:00
patch 9.1.1636: style issues
Problem: style issues
Solution: Fix indentation of function parameters exceeding 80 character
length (Yegappan Lakshmanan).
closes: #18013
Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
62f5be6ea6
commit
d6a762fe1b
@@ -348,7 +348,10 @@ gui_ph_handle_timer_cursor(
|
||||
}
|
||||
|
||||
static int
|
||||
gui_ph_handle_timer_timeout(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
||||
gui_ph_handle_timer_timeout(
|
||||
PtWidget_t *widget,
|
||||
void *data,
|
||||
PtCallbackInfo_t *info)
|
||||
{
|
||||
is_timeout = TRUE;
|
||||
|
||||
@@ -1476,7 +1479,10 @@ gui_ph_dialog_close(int button, void *data)
|
||||
}
|
||||
|
||||
static int
|
||||
gui_ph_dialog_text_enter(PtWidget_t *widget, void *data, PtCallbackInfo_t *info)
|
||||
gui_ph_dialog_text_enter(
|
||||
PtWidget_t *widget,
|
||||
void *data,
|
||||
PtCallbackInfo_t *info)
|
||||
{
|
||||
if (info->reason_subtype == Pt_EDIT_ACTIVATE)
|
||||
gui_ph_dialog_close(1, data);
|
||||
|
||||
Reference in New Issue
Block a user