comparison src/os_vms.c @ 28844:c0403cd5ca06 v8.2.4945

patch 8.2.4945: inconsistent use of white space Commit: https://github.com/vim/vim/commit/9f1983de4e8293bae32fdab72a459b1b64bf767f Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 12 20:35:35 2022 +0100 patch 8.2.4945: inconsistent use of white space Problem: Inconsistent use of white space. Solution: Use Tabs and Spaces consistently.
author Bram Moolenaar <Bram@vim.org>
date Thu, 12 May 2022 21:45:06 +0200
parents 49d866e9b439
children 50555279168b
comparison
equal deleted inserted replaced
28843:cd68a630f0d0 28844:c0403cd5ca06
670 // It is already a VMS file spec 670 // It is already a VMS file spec
671 strcpy(buf, instring); 671 strcpy(buf, instring);
672 else if (strchr(instring,'"') == NULL) // password in the path? 672 else if (strchr(instring,'"') == NULL) // password in the path?
673 { 673 {
674 // Seems it is a regular file, let guess that it is pure Unix fspec 674 // Seems it is a regular file, let guess that it is pure Unix fspec
675 if ( (strchr(instring,'[') == NULL) && (strchr(instring,'<') == NULL) && 675 if ( (strchr(instring,'[') == NULL) && (strchr(instring,'<') == NULL) &&
676 (strchr(instring,']') == NULL) && (strchr(instring,'>') == NULL) && 676 (strchr(instring,']') == NULL) && (strchr(instring,'>') == NULL) &&
677 (strchr(instring,':') == NULL) ) 677 (strchr(instring,':') == NULL) )
678 { 678 {
679 // It must be a truly unix fspec 679 // It must be a truly unix fspec
680 decc$to_vms(instring, vms_fspec_proc, 0, 0); 680 decc$to_vms(instring, vms_fspec_proc, 0, 0);