Home
last modified time | relevance | path

Searched refs:AsciiOnly (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/tcsh/
H A Dsh.char.h287 # define Isalpha(c) (cmap((c),_LET) && !(((c) & META) && AsciiOnly))
288 # define Islower(c) (cmap((c),_DOW) && !(((c) & META) && AsciiOnly))
289 # define Isupper(c) (cmap((c), _UP) && !(((c) & META) && AsciiOnly))
293 # define Isalnum(c) (cmap((c), _DIG|_LET) && !(((Char)(c) & META) && AsciiOnly))
295 # define IscntrlM(c) (cmap((c),_CTR) && !(((c) & META) && AsciiOnly))
297 # define IsprintM(c) (!cmap((c),_CTR) && !(((c) & META) && AsciiOnly))
300 # define Iscntrl(c) (cmap((c),_CTR) && !(((c) & META) && AsciiOnly))
301 # define Isprint(c) (!cmap((c),_CTR) && !(((c) & META) && AsciiOnly))
303 # define Ispunct(c) (cmap((c),_PUN) && !(((c) & META) && AsciiOnly))
H A Dsh.c431 AsciiOnly = k > 0377; in main()
433 AsciiOnly = 0; in main()
435 AsciiOnly = getenv("LANG") == NULL && getenv("LC_CTYPE") == NULL; in main()
H A Dsh.func.c1464 AsciiOnly = MB_CUR_MAX == 1 && k > 0377; in dosetenv()
1466 AsciiOnly = 0; in dosetenv()
1671 AsciiOnly = MB_CUR_MAX == 1 && k > 0377; in dounsetenv()
1673 AsciiOnly = getenv("LANG") == NULL && in dounsetenv()
H A Dsh.h772 EXTERN int AsciiOnly; /* If set only 7 bits expected in characters */ variable
H A Ded.defns.c1818 if (AsciiOnly) in ed_InitNLSMaps()
H A DFixes131 13. remove AsciiOnly fix now that the real issue has been fixed (Roman Kollar)
280 2. Fix AsciiOnly setting that broke 8 bit input. (Juergen Keil)
2101 8. Fix setting of AsciiOnly (Per)