home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / WWIVMODS / MODSUNKN.ZIP / MSGQUOT7.MOD < prev    next >
Text File  |  1990-07-11  |  814b  |  22 lines

  1. Goose #15 @7302
  2. Sun Jul 08 12:12:40 1990
  3. OK, hopefully this will be the last fix for the message quote mod.  This fixes
  4. the problem where characters are sometimes dropped from the right end of the
  5. line when a message is quoted.
  6.  
  7. The change is in MSGBASE1.C, void quote_message.  Look for the following code
  8. and add the four lines as shown:
  9.  
  10.        while ((b[l1]!=32) && (lc>0)) {
  11.         --l1; --l2; --lc;
  12.         if (b[l1]==3) {
  13.           lc+=2;
  14.           l2++;
  15.         }
  16.         if (b[l1]==1) {                                  /* mod - new */
  17.           l2+=3;                                         /* mod - new */
  18.           lc+=3;                                         /* mod - new */
  19.         }                                                /* mod - new */
  20.       }
  21.  
  22. 3«« 2Goose 3»»0