SXML/xpath documentation

2016-05-01 Thread rain1
Hello! Here is a patch that adds documentation for the functions in https://www.gnu.org/software/guile/manual/html_node/SXPath.html based on the comments in the source code. From 28e73a2817e46cf52d5377f687da4e8d12238dd9 Mon Sep 17 00:00:00 2001 From: Raymond Nicholson Date: Sun, 1 May 2016 2

rename from q to queue

2016-04-11 Thread rain1
Hello! The following library uses a pun writing 'q' instead of 'queue': I propose renaming the module from (ice-9 q) to (ice-9 queue) and spelling queue throughout in the usual scheme style of using full words. Attached is a p

Re: include bug in guile

2016-03-31 Thread rain1
On 2016-03-31 13:39, Wette, Matthew R (3441) wrote: On Mar 29, 2016, at 6:05 PM, Wette, Matthew R (3441) wrote: On Mar 29, 2016, at 10:16 AM, ra...@openmailbox.org wrote: I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline)

include bug in guile

2016-03-29 Thread rain1
I think this is a bug in guile relating to "include": a.scm: (define a 1) b.scm: (include "a.scm") (display a) (newline) guile -l b.scm # prints 1 now update a.scm: (define a 2) guile -l b.scm # still prints 1