/[LeafOK_CVS]/lbbs/src/screen.c
ViewVC logotype

Diff of /lbbs/src/screen.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.140 by sysadm, Sun Jan 18 09:14:57 2026 UTC Revision 1.141 by sysadm, Sun Feb 8 15:43:19 2026 UTC
# Line 170  static int _str_input(char *buffer, int Line 170  static int _str_input(char *buffer, int
170                  {                  {
171                          continue;                          continue;
172                  }                  }
173                    else if (ch == KEY_ESC)
174                    {
175                            buffer[0] = '\0';
176                            offset = 0;
177                            break;
178                    }
179                  else if (ch == BACKSPACE || ch == KEY_DEL)                  else if (ch == BACKSPACE || ch == KEY_DEL)
180                  {                  {
181                          if (offset > 0)                          if (offset > 0)
# Line 345  int get_data(int row, int col, char *pro Line 351  int get_data(int row, int col, char *pro
351                  {                  {
352                          continue;                          continue;
353                  }                  }
354                    else if (ch == KEY_ESC)
355                    {
356                            buffer[0] = '\0';
357                            len = 0;
358                            break;
359                    }
360                  else if (ch == BACKSPACE)                  else if (ch == BACKSPACE)
361                  {                  {
362                          if (offset > 0)                          if (offset > 0)


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1