Re: snarfing docstrings in c extensions

2018-04-09 Thread Samuel Barreto
> On Sat, Apr 07, 2018 at 08:59:32PM +0200, Samuel Barreto wrote: > >> So I do am able to generate the info files that I want. My two problems >> are: >> >> 1. how to use guile-snarf-docs portably ? (I have hardcoded them in my >>Makefile for now.) > > Since they don't get installed, it is

snarfing docstrings in c extensions

2018-04-07 Thread Samuel Barreto
Hi everyone, I'm trying to write a GSL wrapper in guile. I have written a lot of simple functions using SCM_DEFINE and documented them using the last SCM_DEFINE macro argument. Now I'd like to make those docstrings accessible from Scheme code. The way I do it for now is with this makefile