<feed xmlns='http://www.w3.org/2005/Atom'>
<title>geiser-guile/geiser/evaluation.scm, branch 0.28.4</title>
<subtitle>geiser and guile talk to each other</subtitle>
<id>https://jao.io/cgit/geiser-guile/atom?h=0.28.4</id>
<link rel='self' href='https://jao.io/cgit/geiser-guile/atom?h=0.28.4'/>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/'/>
<updated>2020-07-20T03:41:00Z</updated>
<entry>
<title>geiser -&gt; src</title>
<updated>2020-07-20T03:41:00Z</updated>
<author>
<name>jao</name>
<email>jao@gnu.org</email>
</author>
<published>2020-07-20T03:41:00Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=aab5226dfe937861c54729744e8add15d931f758'/>
<id>urn:sha1:aab5226dfe937861c54729744e8add15d931f758</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixing guile 2.2 compatibility</title>
<updated>2015-12-14T03:22:48Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2015-12-14T03:22:48Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=a1078b906f73bfe69754390908083ae8fab48b3f'/>
<id>urn:sha1:a1078b906f73bfe69754390908083ae8fab48b3f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Support for guile-2.2</title>
<updated>2015-12-14T02:49:33Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2015-12-13T22:15:48Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=afa28c8a82f81a66eda3b12c2f7279e5c3a25368'/>
<id>urn:sha1:afa28c8a82f81a66eda3b12c2f7279e5c3a25368</id>
<content type='text'>
Using cond-expand to provide support for the new world of guile 2.2
</content>
</entry>
<entry>
<title>Speeding up debugger check (addresses #64)</title>
<updated>2015-09-10T02:22:10Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2015-09-10T02:22:10Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=58484400fd3dde3ec28057159ce55f22fcb6c919'/>
<id>urn:sha1:58484400fd3dde3ec28057159ce55f22fcb6c919</id>
<content type='text'>
Soooo, the long delay experienced when evaluating long string lists in
Guile had nothing to do with the time took by emacs to read the response
from the scheme process; that process is always a breeze, no matter or
its format or number of newlines.  The delay was provoked by an innocent
looking function that scans the received string (which includes a prompt
at the end as an EOT marker) to check whether Guile (or any other
scheme) has just entered the debugger (that's done inside
`geiser-con--connection-update-debugging`).  For some reason,
`string-match` on that kind of string using Guile's regexp for a debug
prompt takes forever.  Instead of trying to optimize the regular
expression, i've just applied it to the *second* line of the received
string, which is the one that contains the response's prompt.
</content>
</entry>
<entry>
<title>Ensuring switch-to-geiser asks for an implementation</title>
<updated>2015-09-08T21:51:21Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2015-09-08T21:51:21Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=2f91e2e4efc776a3b8808c534491edaea6642f93'/>
<id>urn:sha1:2f91e2e4efc776a3b8808c534491edaea6642f93</id>
<content type='text'>
Should fix issue #85
</content>
</entry>
<entry>
<title>guile: pretty printing evaluation results (#64)</title>
<updated>2015-09-03T02:21:50Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2015-09-03T02:21:50Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=85bf381f6a2bdf475eaf469fa2841c0422ed5605'/>
<id>urn:sha1:85bf381f6a2bdf475eaf469fa2841c0422ed5605</id>
<content type='text'>
We use the same trick as chicken for guile, and pretty-print the
evaluation results before writing them.  The trick wasn't working at all
until i specified a value for the undocumented keyword parameter
`#:max-expr-width`, which makes me think i might be missing something.
</content>
</entry>
<entry>
<title>Guile: augmenting %load-compiled-path too</title>
<updated>2013-09-13T18:36:56Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2013-09-13T18:36:56Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=9d0d38a20850f3f9eecd74267970748bbcbc6bdc'/>
<id>urn:sha1:9d0d38a20850f3f9eecd74267970748bbcbc6bdc</id>
<content type='text'>
We add the paths in geiser-guile-load-path also to %load-compiled-path,
and new directories added to the load path via geiser-add-to-load-path
are added to both %load-path and %load-compiled-path.

Here's hope Ludovic will like all these additions!
</content>
</entry>
<entry>
<title>Guile: capturing output to standard error</title>
<updated>2011-09-11T19:35:15Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-09-11T19:35:15Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=4c022191fac48d9f5d96cfafeda6aba59da627de'/>
<id>urn:sha1:4c022191fac48d9f5d96cfafeda6aba59da627de</id>
<content type='text'>
We were just ignoring it so far!
</content>
</entry>
<entry>
<title>Guile: setting *current-warning-prefix* during evaluation</title>
<updated>2011-02-25T15:05:11Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-02-25T15:05:11Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=420a8c4d96ff19786e4a16a34fcd6b5a98da500b'/>
<id>urn:sha1:420a8c4d96ff19786e4a16a34fcd6b5a98da500b</id>
<content type='text'>
This is a 2.0 fluid that governs how warning messages are displayed.
In Geiser, we need the prefix set to an empty string so that file
paths are clickable (and the display in a separate emacs buffer is nicer).
</content>
</entry>
<entry>
<title>Guile: 'format' added to the warning list</title>
<updated>2011-02-09T13:21:24Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-02-09T13:21:24Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser-guile/commit/?id=67e9ff26c6cac413572034ffbd69ba9212085014'/>
<id>urn:sha1:67e9ff26c6cac413572034ffbd69ba9212085014</id>
<content type='text'>
</content>
</entry>
</feed>
