thanks for the clarification (also to others who responded), very insightful.
vectors created using read syntax are apparently immutable with guile 2.2.2:
--
(define a #(0))
(if (vector? a) (vector-set! a 0 1))
In procedure vector-set!: Wrong type argument in position 1 (expecting mutable
vector): #(0)
--
is this documented somewhere in the guile manual or part of the sc
i use and maintain a formatter which formats like explained here:
http://sph.io/content/1dd7
it provides a command-line program which i have bound in emacs to a key
for on-demand formatting.
On 2014-08-16 06:28, Bernardo Ezequiel Contreras wrote:
> hi all,
> i would like to know how do you autom
the source code for guile-dbd-sqlite3 (at
https://github.com/jkalbhenn/guile-dbd-sqlite3) has been improved since
the last version has been packaged for
http://download.gna.org/guile-dbi/ and a new version could be provided
there.
changes:
* fixed that dbi-close did not close the sqlite file
*