In scripts/gen-api-gtkdoc.py:

> +        self.since = ""
> +        self.annot = []
> +
> +    def cb(self, type, str):
> +        if (type == "param"):
> +            words = str.split(" ", 2);
> +            self.annot = []
> +        elif (type == "return"):
> +            self.annot = []
> +        elif (type == "since"):
> +            self.since = str.rstrip()
> +        elif (type == "geany:skip"):
> +            self.annot.append("skip")
> +        elif (type == "geany:nullable") or (type == "geany:skip"):
> +            self.annot.append(type.split(":")[1])
> +        elif (type == "geany:cb"):

this isn't needed anymore


Reply to this email directly or view it on GitHub.