[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / texi2mdoc

Diff for /texi2mdoc/main.c between version 1.36 and 1.37

version 1.36, 2015/02/23 15:23:44 version 1.37, 2015/02/23 17:24:51
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #if defined(__linux__) || defined(__MINT__)
   # define _GNU_SOURCE /* memmem */
   #endif
 #include <sys/mman.h>  #include <sys/mman.h>
 #include <sys/stat.h>  #include <sys/stat.h>
   
Line 1355  dosp(struct texi *p, enum texicmd cmd, 
Line 1358  dosp(struct texi *p, enum texicmd cmd, 
         const char *buf, size_t sz, size_t *pos)          const char *buf, size_t sz, size_t *pos)
 {  {
   
         texivspace(p);          if (p->literal)
                   texiputchar(p, '\n');
           else
                   texivspace(p);
         /* FIXME: ignore and parseeoln. */          /* FIXME: ignore and parseeoln. */
         advanceeoln(p, buf, sz, pos, 1);          advanceeoln(p, buf, sz, pos, 1);
 }  }
Line 1631  main(int argc, char *argv[])
Line 1637  main(int argc, char *argv[])
 {  {
         struct texi      texi;          struct texi      texi;
         int              c;          int              c;
         char            *path, *dir;          char            *dirpath, *dir, *ccp;
         const char      *progname, *Idir, *cp;          const char      *progname, *Idir, *cp;
   
         progname = strrchr(argv[0], '/');          progname = strrchr(argv[0], '/');
Line 1656  main(int argc, char *argv[])
Line 1662  main(int argc, char *argv[])
         if (0 == (argc -= optind))          if (0 == (argc -= optind))
                 goto usage;                  goto usage;
   
         if (NULL == (path = strdup(argv[0])))          if (NULL == (dirpath = strdup(argv[0])))
                 texiabort(&texi, NULL);                  texiabort(&texi, NULL);
         else if (NULL == (dir = dirname(path)))          if (NULL == (dir = dirname(dirpath)))
                 texiabort(&texi, NULL);                  texiabort(&texi, NULL);
   
         free(path);  
   
         if (NULL != (cp = strrchr(argv[0], '/')))          if (NULL != (cp = strrchr(argv[0], '/')))
                 texi.title = strdup(cp + 1);                  texi.title = strdup(cp + 1);
         else          else
Line 1670  main(int argc, char *argv[])
Line 1674  main(int argc, char *argv[])
   
         if (NULL == texi.title)          if (NULL == texi.title)
                 texiabort(&texi, NULL);                  texiabort(&texi, NULL);
         else if (NULL != (path = strchr(texi.title, '.')))          else if (NULL != (ccp = strchr(texi.title, '.')))
                 *path = '\0';                  *ccp = '\0';
   
         texi.ign = 1;          texi.ign = 1;
         texi.dirs = parsedirs(&texi, dir, Idir, &texi.dirsz);          texi.dirs = parsedirs(&texi, dir, Idir, &texi.dirsz);
           free(dirpath);
         parsefile(&texi, argv[0], 1);          parsefile(&texi, argv[0], 1);
         /* We shouldn't get here. */          /* We shouldn't get here. */
         texiexit(&texi);          texiexit(&texi);

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

CVSweb