Diff for /freem/src/service.c between versions 1.11 and 1.12

version 1.11, 2025/03/24 02:00:30 version 1.12, 2025/03/24 04:05:36
Line 25 Line 25
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   Revision 1.12  2025/03/24 04:05:36  snw
    *   Replace crlf with frm_crlf to avoid symbol conflict with readline on OS/2
    *
  *   Revision 1.11  2025/03/24 02:00:30  snw   *   Revision 1.11  2025/03/24 02:00:30  snw
  *   Work around some OS/2 incompatibilities in service.c   *   Work around some OS/2 incompatibilities in service.c
  *   *
Line 3319  void write_m (char *text) Line 3322  void write_m (char *text)
                   
             ypos[io]++;              ypos[io]++;
                   
             if (crlf[io]) xpos[io] = 0;              if (frm_crlf[io]) xpos[io] = 0;
                   
             continue;              continue;
   
Line 4150  void read_m (char *stuff, long read_time Line 4153  void read_m (char *stuff, long read_time
   
     if (single) break;      if (single) break;
           
     if (ch == LF && crlf[io]) {      if (ch == LF && frm_crlf[io]) {
         i--;          i--;
         continue;          continue;
     }      }

Removed from v.1.11  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>