~neovim-ppa/neovim-ppa/neovim

« back to all changes in this revision

Viewing changes to src/nvim/hardcopy.c

  • Committer: GitHub
  • Author(s): Justin M. Keyes
  • Date: 2016-07-09 10:58:27 UTC
  • mfrom: (2636.1.34)
  • Revision ID: git-v1:adaacdd71a70b76bc686113eaece47a6264701a5
Merge #4648 from jamessan/packages

packages (vim-patch:7.4.{1384,1388,1396,1478,1479,1480,1486,1492,1499,1528,1550,1551,1552,1553,1554,1596,1649,1712,1840,1973,1986})

Show diffs side-by-side

added added

removed removed

Lines of Context:
1526
1526
  vim_strcat(buffer, (char_u *)name, MAXPATHL);
1527
1527
  vim_strcat(buffer, (char_u *)".ps", MAXPATHL);
1528
1528
  resource->filename[0] = NUL;
1529
 
  retval = (do_in_runtimepath(buffer, FALSE, prt_resource_name,
1530
 
                resource->filename)
 
1529
  retval = (do_in_runtimepath(buffer, 0, prt_resource_name, resource->filename)
1531
1530
            && resource->filename[0] != NUL);
1532
1531
  xfree(buffer);
1533
1532
  return retval;