summaryrefslogtreecommitdiffstats
path: root/src/gui_mac.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-30 18:47:01 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-30 18:47:01 +0100
commitabab0b0fdd6535969447b03a4fffc1947918cf6c (patch)
tree2d43537a5dce8433ef2b2a37684c9e069392c592 /src/gui_mac.c
parentbd9bf266fccbf7b7f09e476e09b61f0133e914db (diff)
patch 8.1.1086: too many curly bracesv8.1.1086
Problem: Too many curly braces. Solution: Remove curly braces where they are not needed. (Hirohito Higashi, closes #3982)
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r--src/gui_mac.c23
1 files changed, 1 insertions, 22 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c
index bfecf81e65..c177ee650b 100644
--- a/src/gui_mac.c
+++ b/src/gui_mac.c
@@ -360,9 +360,7 @@ C2Pascal_save_and_remove_backslash(char_u *Cstring)
for (c = Cstring, p = PascalString+1, len = 0; (*c != 0) && (len < 255); c++)
{
if ((*c == '\\') && (c[1] != 0))
- {
c++;
- }
*p = *c;
p++;
len++;
@@ -1259,25 +1257,19 @@ InstallAEHandlers(void)
error = AEInstallEventHandler(kCoreEventClass, kAEOpenApplication,
NewAEEventHandlerUPP(Handle_aevt_oapp_AE), 0, false);
if (error)
- {
return error;
- }
/* install quit application handler */
error = AEInstallEventHandler(kCoreEventClass, kAEQuitApplication,
NewAEEventHandlerUPP(Handle_aevt_quit_AE), 0, false);
if (error)
- {
return error;
- }
/* install open document handler */
error = AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments,
NewAEEventHandlerUPP(HandleODocAE), 0, false);
if (error)
- {
return error;
- }
/* install print document handler */
error = AEInstallEventHandler(kCoreEventClass, kAEPrintDocuments,
@@ -1331,15 +1323,11 @@ InstallAEHandlers(void)
error = AEInstallEventHandler('KAHL', 'GTTX',
NewAEEventHandlerUPP(Handle_KAHL_GTTX_AE), 0, false);
if (error)
- {
return error;
- }
error = AEInstallEventHandler('KAHL', 'SRCH',
NewAEEventHandlerUPP(Handle_KAHL_SRCH_AE), 0, false);
if (error)
- {
return error;
- }
error = AEInstallEventHandler('KAHL', 'MOD ',
NewAEEventHandlerUPP(Handle_KAHL_MOD_AE), 0, false);
#endif
@@ -3857,9 +3845,7 @@ draw_string_QD(int row, int col, char_u *s, int len, int flags)
/* SelectFont(hdc, gui.currFont); */
if (flags & DRAW_TRANSP)
- {
TextMode(srcOr);
- }
MoveTo(TEXT_X(col), TEXT_Y(row));
DrawText((char *)s, 0, len);
@@ -3939,9 +3925,7 @@ draw_string_ATSUI(int row, int col, char_u *s, int len, int flags)
/* SelectFont(hdc, gui.currFont); */
if (flags & DRAW_TRANSP)
- {
TextMode(srcOr);
- }
MoveTo(TEXT_X(col), TEXT_Y(row));
@@ -4620,13 +4604,9 @@ gui_mch_set_text_area_pos(int x, int y, int w, int h)
GetWindowBounds(gui.VimWindow, kWindowGlobalPortRgn, &VimBound);
if (gui.which_scrollbars[SBAR_LEFT])
- {
VimBound.left = -gui.scrollbar_width + 1;
- }
else
- {
VimBound.left = 0;
- }
SetWindowBounds(gui.VimWindow, kWindowGlobalPortRgn, &VimBound);
@@ -5675,9 +5655,8 @@ gui_mch_dialog(
/* Hang until one of the button is hit */
do
- {
ModalDialog(dialogUPP, &itemHit);
- } while ((itemHit < 1) || (itemHit > lastButton));
+ while ((itemHit < 1) || (itemHit > lastButton));
#ifdef USE_CARBONKEYHANDLER
dialog_busy = FALSE;