home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume4 / xplot / patch1 < prev    next >
Text File  |  1989-08-08  |  1KB  |  50 lines

  1. Path: uunet!island!argv
  2. From: argv@island.uu.net (Dan Heller)
  3. Newsgroups: comp.sources.x
  4. Subject: v04i090: Patch to xplot (actually to the plot (3x) library), Patch1
  5. Message-ID: <985@island.uu.net>
  6. Date: 9 Aug 89 07:30:01 GMT
  7. Organization: Island Graphics, Marin County, California
  8. Lines: 39
  9. Approved: island!argv@sun.com
  10.  
  11. Submitted-by: arthur@helios.tn.cornell.edu (Arthur Smith)
  12. Posting-number: Volume 4, Issue 90
  13. Archive-name: xplot/patch1
  14. Patch-To: Xplot, Volume 4, Issue 81
  15.  
  16. It has come to my attention that the plot (3x) library I supplied
  17. with xplot did not actually handle the strings in label and linemod
  18. correctly (it assumed the argument string already contained a newline,
  19. which is required by plot(5), but not in the subroutines). A patch
  20. is included here:
  21.  
  22. -------------------------- cut here -----------------------------------
  23. *** xplot/xlibplot/xlibplot.c-    Fri Aug  4 14:46:16 1989
  24. --- xplot/xlibplot/xlibplot.c    Fri Aug  4 15:06:40 1989
  25. ***************
  26. *** 28,33 ****
  27. --- 28,34 ----
  28.   char *s;
  29.   {
  30.       strcpy(xplotlib_buf,s);
  31. +     strcat(xplotlib_buf, "\n");
  32.       putentry('t',strlen(xplotlib_buf));
  33.   }
  34.   
  35. ***************
  36. *** 103,108 ****
  37. --- 104,110 ----
  38.   char *s;
  39.   {
  40.       strcpy(xplotlib_buf,s);
  41. +     strcat(xplotlib_buf, "\n");
  42.       putentry('f',strlen(xplotlib_buf));
  43.   }
  44.   
  45. -------------------------- cut here -----------------------------------
  46.  
  47.                     Arthur Smith
  48. arthur@helios.tn.cornell.edu (arpanet)
  49. arthur@crnlassp        (bitnet)
  50.