Skip to content
Snippets Groups Projects
  1. Mar 16, 2021
  2. Mar 15, 2021
  3. Mar 14, 2021
  4. Mar 13, 2021
    • Deucе's avatar
      Remove some backslashes from the ends of lines... · 0f312cb3
      Deucе authored
      Presumably these were part of macros once and never cleaned up?
      0f312cb3
    • Deucе's avatar
      We can't pollute the namespace with curses everywhere. · 687d092c
      Deucе authored
      Just rename ESCDELAY member to escdelay.
      687d092c
    • Rob Swindell's avatar
      Fix error removing INPUT.MSG introduced in Commit 0c441424 · 5b044471
      Rob Swindell authored
      remove() is expected to fail in this scenario sometimes depending
      on how writemsg() is used - in the error case, the user was trying
      to edit his .plan file with the ;plan command:
      term Node 10 <Deuce> !ERROR 11 (Resource temporarily unavailable) in writemsg.cpp line 1232 (editfile) removing "/sbbs/node10/temp/INPUT.MSG" access=0
      
      Thanks for the bug report!
      5b044471
    • Deucе's avatar
      include curs_fix from ciolib.h to fix openSUSE · e679fa13
      Deucе authored
      Apparently, the ncurses in openSUSE Leap-15.2 has the following:
      Since we have a struct member named ESCDELAY, we can't actually set
      it at all when this macro is defined.
      
      The three possibilities to deal with this are:
      1) Rename the ESCDELAY member.
         Likely the best option long-term, but I don't want to find everything
         and update it at this time.
      2) Avoid using the ESCDELAY member #ifdef ESCDELAY
         Which makes it not work in the exact set of circumstances it makes
         sense in.
      3) #include curs_fix.h from ciolib.h
         This actually renames the ESCDELAY member to _nc_ESCDELAY, but you
         won't be able to actually notice this.
      e679fa13
    • Deucе's avatar
      Fix issue with ATASCII delete/insert character. · ec06a168
      Deucе authored
      Before the Unicode support was added, displaying a NUL would clear
      the cell, but now it is translated.  For ATASCII, this results in
      a heart character being displayed instead of an empty cell when
      inserting or deleting characters.
      
      Fixes bug #28 on Sourceforge.
      ec06a168
    • Deucе's avatar
    • Deucе's avatar
      Handle the new value of CIO_KEY_QUIT better. · ecc690f5
      Deucе authored
      The low byte is no longer zero.
      ecc690f5
  5. Mar 11, 2021
  6. Mar 10, 2021
Loading