comparison src/findfile.c @ 27490:fb4c30606b4a v8.2.4273

patch 8.2.4273: the EBCDIC support is outdated Commit: https://github.com/vim/vim/commit/424bcae1fb0f69e0aef5e0cf84fd771cf34a0fb7 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 31 14:59:41 2022 +0000 patch 8.2.4273: the EBCDIC support is outdated Problem: The EBCDIC support is outdated. Solution: Remove the EBCDIC support.
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Jan 2022 16:00:09 +0100
parents b3ef31c6a922
children bc47aeacc8d8
comparison
equal deleted inserted replaced
27489:9f00e1edb43c 27490:fb4c30606b4a
487 /* 487 /*
488 * copy wc_path and add restricts to the '**' wildcard. 488 * copy wc_path and add restricts to the '**' wildcard.
489 * The octet after a '**' is used as a (binary) counter. 489 * The octet after a '**' is used as a (binary) counter.
490 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3) 490 * So '**3' is transposed to '**^C' ('^C' is ASCII value 3)
491 * or '**76' is transposed to '**N'( 'N' is ASCII value 76). 491 * or '**76' is transposed to '**N'( 'N' is ASCII value 76).
492 * For EBCDIC you get different character values.
493 * If no restrict is given after '**' the default is used. 492 * If no restrict is given after '**' the default is used.
494 * Due to this technique the path looks awful if you print it as a 493 * Due to this technique the path looks awful if you print it as a
495 * string. 494 * string.
496 */ 495 */
497 len = 0; 496 len = 0;