Skip to content

Commit b04a98f

Browse files
committed
patch 8.0.0114
Problem: Coding style not optimal. Solution: Add spaces. (Ken Takata)
1 parent 87f3d20 commit b04a98f

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

src/gui_w32.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3551,12 +3551,12 @@ gui_mch_browseW(
35513551
filterp = convert_filterW(filter);
35523552

35533553
vim_memset(&fileStruct, 0, sizeof(OPENFILENAMEW));
3554-
#ifdef OPENFILENAME_SIZE_VERSION_400W
3554+
# ifdef OPENFILENAME_SIZE_VERSION_400W
35553555
/* be compatible with Windows NT 4.0 */
35563556
fileStruct.lStructSize = OPENFILENAME_SIZE_VERSION_400W;
3557-
#else
3557+
# else
35583558
fileStruct.lStructSize = sizeof(fileStruct);
3559-
#endif
3559+
# endif
35603560

35613561
if (title != NULL)
35623562
titlep = enc_to_utf16(title, NULL);
@@ -3593,10 +3593,10 @@ gui_mch_browseW(
35933593
* Don't use OFN_OVERWRITEPROMPT, Vim has its own ":confirm" dialog.
35943594
*/
35953595
fileStruct.Flags = (OFN_NOCHANGEDIR | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY);
3596-
#ifdef FEAT_SHORTCUT
3596+
# ifdef FEAT_SHORTCUT
35973597
if (curbuf->b_p_bin)
35983598
fileStruct.Flags |= OFN_NODEREFERENCELINKS;
3599-
#endif
3599+
# endif
36003600
if (saving)
36013601
{
36023602
if (!GetSaveFileNameW(&fileStruct))

src/os_mswin.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# include <dlgs.h>
4141
# include <winspool.h>
4242
# include <commdlg.h>
43-
#endif
43+
# endif
4444

4545
#endif /* PROTO */
4646

@@ -1619,7 +1619,9 @@ mch_print_init(prt_settings_T *psettings, char_u *jobname, int forceit)
16191619

16201620
if (psettings->n_uncollated_copies == 0)
16211621
psettings->n_uncollated_copies = 1;
1622-
} else {
1622+
}
1623+
else
1624+
{
16231625
psettings->n_collated_copies = 1;
16241626
psettings->n_uncollated_copies = 1;
16251627
}

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
114,
767769
/**/
768770
113,
769771
/**/

0 commit comments

Comments
 (0)