Tagged Questions

1
vote
3answers
119 views

Guile and Emacs?

I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile. http://san …
0
votes
1answer
73 views

How to parse out base file name using Script-Fu

Using Gimp 2.6.6 for MAC OS X (under X11) as downloaded from gimp.org. I'm trying to automate a boring manual process with Script-Fu. I needed to parse the image file name to save …
21
votes
12answers
2k views

Lisp Web Frameworks?

What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
0
votes
1answer
133 views

How to convert a string into bignum in C code which extends Guile?

In Guile 1.6.*, the function scm_istring2number(char *str,int strlen,int radix) does the work. However, this function does not exist in Guile 1.8.. How can I accomplish the same …
2
votes
1answer
155 views

How to check for memory leaks in Guile extension modules?

I develop an extension module for Guile, written in C. This extension module embeds a Python interpreter. Since this extension module invokes the Python interpreter, I need to ve …
2
votes
1answer
67 views

How to build unit tests in Guile, which output to the TAP standard?

I would like to have a Guile script, which implements functions, which output test result messages according to the TAP protocol.
1
vote
1answer
54 views

How to run TAP::Harness tests written in Guile?

The usual approach of test: $(PERL) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), '$(INCDIRS)')" $(TEST_FILES) fails to run Guile scripts, because it passes t …
2
votes
3answers
136 views

Guile scheme - quoted period?

What does the following Guile scheme code do? (eq? y '.) (cons x '.) The code is not valid in MzScheme, is there a portable equivalent across scheme implementations? I am tryin …