abo-abo / plain-org-wiki

Simple jump-to-org-files in a directory package
53 stars 7 forks source link

pow-files-recursive uses deprecated function #6

Closed kiuuik closed 7 years ago

kiuuik commented 7 years ago

On my machine your function pow-files-recursive sometimes fails. Then it complains it's missing the function ffip-project-files which is called in line 65 of plain-org-wiki.el.

I use melpa and have a recent version of find-file-in-project. There was a change in November 2015 in find-file-in-project: The function ffip-project-files was renamed to ffip-project-search.

In the meantime the new function ffip-project-search seems to have changed, too. Here is the new documenation. After reading this I changed your line 65 from (ffip-project-files))))) to (ffip-project-search "" nil))))). Since then I haven't encountered any error messages. But this might have been a pure coincidence.

Thanks again for your great software. I like plain-org-wiki a lot.

abo-abo commented 7 years ago

Thanks.