comparison src/session.c @ 28809:d0241e74bfdb v8.2.4928

patch 8.2.4928: various white space and cosmetic mistakes Commit: https://github.com/vim/vim/commit/6ed545e79735f23ff8e650bc2f0967e5a0baedc9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 9 20:09:23 2022 +0100 patch 8.2.4928: various white space and cosmetic mistakes Problem: Various white space and cosmetic mistakes. Solution: Change spaces to tabs, improve comments.
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 May 2022 21:15:04 +0200
parents 8fc86c943863
children 6c67aeb82b65
comparison
equal deleted inserted replaced
28808:0f0fed554cdc 28809:d0241e74bfdb
970 goto fail; 970 goto fail;
971 971
972 // Restore 'shortmess'. 972 // Restore 'shortmess'.
973 if (ssop_flags & SSOP_OPTIONS) 973 if (ssop_flags & SSOP_OPTIONS)
974 { 974 {
975 if (fprintf(fd, "set shortmess=%s", p_shm) < 0 || put_eol(fd) == FAIL) 975 if (fprintf(fd, "set shortmess=%s", p_shm) < 0 || put_eol(fd) == FAIL)
976 goto fail; 976 goto fail;
977 } 977 }
978 else 978 else
979 { 979 {
980 if (put_line(fd, "let &shortmess = s:shortmess_save") == FAIL) 980 if (put_line(fd, "let &shortmess = s:shortmess_save") == FAIL)
981 goto fail; 981 goto fail;
982 } 982 }
983 983
984 if (restore_height_width) 984 if (restore_height_width)
985 { 985 {
986 // Restore 'winminheight' and 'winminwidth'. 986 // Restore 'winminheight' and 'winminwidth'.