<feed xmlns='http://www.w3.org/2005/Atom'>
<title>geiser/elisp, branch 0.1.1</title>
<subtitle>emacs and scheme talk to each other</subtitle>
<id>https://jao.io/cgit/geiser/atom?h=0.1.1</id>
<link rel='self' href='https://jao.io/cgit/geiser/atom?h=0.1.1'/>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/'/>
<updated>2011-01-23T20:12:29Z</updated>
<entry>
<title>Fix for bug in module name completion (affecting Guile)</title>
<updated>2011-01-23T20:12:29Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-23T20:12:29Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=cb2a357948086e06efa21525c10b907fdde5fd25'/>
<id>urn:sha1:cb2a357948086e06efa21525c10b907fdde5fd25</id>
<content type='text'>
</content>
</entry>
<entry>
<title>geiser-repl--tab -&gt; geiser-repl-tab-dwim</title>
<updated>2011-01-23T19:12:16Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-23T19:12:16Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=42afea9f3c60485947696929b68017f7a4706614'/>
<id>urn:sha1:42afea9f3c60485947696929b68017f7a4706614</id>
<content type='text'>
Following a suggestion by M. Harig, and following the policy that it's
better for command names to not be doubly hyphenated.
</content>
</entry>
<entry>
<title>C-c C-Z -&gt; C-c C-a</title>
<updated>2011-01-11T13:45:48Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-11T13:45:48Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=9b580e96de75a34383d7e370e5eab2b5308009bd'/>
<id>urn:sha1:9b580e96de75a34383d7e370e5eab2b5308009bd</id>
<content type='text'>
Since C-c C-z/Z apparently conflict with each other, and the new
keybinding is more friendly anyway.
</content>
</entry>
<entry>
<title>Docstring typos</title>
<updated>2011-01-09T00:38:22Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-09T00:38:22Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=35554fc232d7984b646648cf327e06fee2bed636'/>
<id>urn:sha1:35554fc232d7984b646648cf327e06fee2bed636</id>
<content type='text'>
Mark, again.
</content>
</entry>
<entry>
<title>Autodoc mode (de)activation fix.</title>
<updated>2011-01-08T23:06:46Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-08T23:06:46Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=a614316ce70a060cb8b10557f7614fb3fda65b4c'/>
<id>urn:sha1:a614316ce70a060cb8b10557f7614fb3fda65b4c</id>
<content type='text'>
Quoth Mark:

When the Geiser minor mode is toggled off using the command
`geiser-mode', the message:

   Toggling eldoc-mode off; better pass an explicit argument.

is displayed in the echo area.  This is traceable to line 219:

   (eldoc-mode geiser-autodoc-mode)

The function `eldoc-mode' takes numeric arguments, while
`geiser-autodoc-mode' returns boolean values.  Here is a
simple patch:

   (eldoc-mode (if geiser-autodoc-mode 1 -1))
</content>
</entry>
<entry>
<title>REPL: M-TAB bound to completion-at-point</title>
<updated>2011-01-07T18:42:51Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-07T18:42:51Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=6f4a32e7c93825fc4cf6a5435e57878c559144e0'/>
<id>urn:sha1:6f4a32e7c93825fc4cf6a5435e57878c559144e0</id>
<content type='text'>
TAB already does all the other stuff.
</content>
</entry>
<entry>
<title>REPL: fix for history navigation</title>
<updated>2011-01-07T13:14:31Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-07T13:14:31Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=217504b2332303d9351de33e93fb46dac5daa28d'/>
<id>urn:sha1:217504b2332303d9351de33e93fb46dac5daa28d</id>
<content type='text'>
We were using a comint-get-old-input function that was including the
prompt in its returned value. This was no problem most of the time
because we don't use comint-send-input before the process mark, but
there's another circumstance under which comint-get-old-input is
called, namely, when reaching the end of the input history. When
history is exhausted, the "old input" is inserted (go figure), and we
were inserting a prompt, wreaking havoc with its read-only-ness.
</content>
</entry>
<entry>
<title>Really avoiding *spurious* buffers</title>
<updated>2011-01-03T00:45:13Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-03T00:45:13Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=dac9e147a1717674aab32ecc47bb9ea6cddb4ef1'/>
<id>urn:sha1:dac9e147a1717674aab32ecc47bb9ea6cddb4ef1</id>
<content type='text'>
My previous attempt was bogus! Also, i'm taking advantage of our
sending queries serially to simplify transaction queue processing, and
to clean after ourserlves on error.
</content>
</entry>
<entry>
<title>More robust symbol reading (instead of specializing for quack)</title>
<updated>2011-01-02T20:03:00Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-02T20:03:00Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=78554a9c2bbbe59b007f85c8ee113b9a449db231'/>
<id>urn:sha1:78554a9c2bbbe59b007f85c8ee113b9a449db231</id>
<content type='text'>
Let's use the scheme reader instead of half-assed regular expressions
and special-casing.
</content>
</entry>
<entry>
<title>More quackisms</title>
<updated>2011-01-02T19:38:25Z</updated>
<author>
<name>Jose Antonio Ortega Ruiz</name>
<email>jao@gnu.org</email>
</author>
<published>2011-01-02T19:38:25Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=151edf5b090a95748c31e906ae22afa163e438bf'/>
<id>urn:sha1:151edf5b090a95748c31e906ae22afa163e438bf</id>
<content type='text'>
</content>
</entry>
</feed>
