You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
324 B

  1. --- a/ed.inputl.c
  2. +++ b/ed.inputl.c
  3. @@ -668,9 +668,9 @@ int
  4. GetCmdChar(Char ch)
  5. {
  6. #ifndef WINNT_NATIVE // We use more than 256 for various extended keys
  7. - wint_t c = ch & CHAR;
  8. + Char c = ch & CHAR;
  9. #else
  10. - wint_t c = ch;
  11. + Char c = ch;
  12. #endif
  13. return c < NT_NUM_KEYS ? CurrentKeyMap[c] : F_INSERT;
  14. }