commit 775d1d734a677274fbbf4af780592bb3768d3f9b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 14 01:55:00 2018 +0100

    Release 0.10

 AUTHORS         | 6 ++++++
 NEWS            | 9 +++++++++
 doc/geiser.texi | 2 +-
 doc/macros.texi | 2 +-
 4 files changed, 17 insertions(+), 2 deletions(-)

commit e1603edd6f64094495af34432f0d9be621173403
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 3 03:25:44 2018 +0100

    Emacs 24 compatibility: completion-table-dynamic
    
    Looks like the arity of that function changed at some point between 24
    and 25.  It also looks like people still use emacs 24 (see issue #236),
    so here we go.

 elisp/geiser-completion.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit f8bbf03915a22232cafa874070c475230ecf1866
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 30 23:50:57 2018 +0100

    versions bumped (and hope for a february release)

 configure.ac    | 4 ++--
 doc/macros.texi | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

commit 3f2272ecf02c8049ea5f250e6263d0f9441a0bd8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 30 23:45:41 2018 +0100

    guile 2.2: program-arities and program-module reloaded
    
    Those two procedures are gone in these 2.2 times, and things like
    autodoc and xref were broken as a result.  With Andy's help,
    apparently good enough approximations of their functionality are now
    in place: let's see how they go.

 elisp/geiser-guile.el           |  4 ++--
 scheme/guile/geiser/doc.scm     | 11 +++++++----
 scheme/guile/geiser/modules.scm | 29 ++++++++++++++++++++++++++++-
 3 files changed, 37 insertions(+), 7 deletions(-)

commit 33783307abab46433ce18273f562b3a729628e8e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 29 03:21:13 2018 +0100

    Fix for module/identifier completion in minibuffer
    
    When constructing the completion table for minibuffer prompts via
    `completion-table-dynamic', we were forgetting to tell emacs to
    perform the completion lookup with the original (scheme) buffer as its
    current buffer.  As a result, the actual completion function wasn't
    able to find the REPL connection and everything when down in flames
    with an exception.

 elisp/geiser-completion.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3255eac184613601aa11b59fd3afd2d5ba13d12e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 26 01:39:30 2018 +0100

    New HACKING file

 HACKING | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 HACKING

commit 0bfc6be0d25ff311d739d2f65fd343135142f6f3
Author: diego <9020453+dieggsy@users.noreply.github.com>
Date:   Sun Dec 17 16:46:39 2017 -0500

    Make geiser-chicken-required-modules customizable (#233)
    
    We can probably do away with this entirely; but for now, make it a custom.

 elisp/geiser-chicken.el | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 473ef183d6c2c205699b7a865a206f579e60ce17
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sun Dec 10 08:45:16 2017 -0800

    Remove memoization
    
    It now _slows_ performance rather than improves it. Removing it speeds
    up the issue described in jaor/geiser#174

 scheme/chicken/geiser/emacs.scm | 210 +++++++++++++++++++++---------------------------
 1 file changed, 91 insertions(+), 119 deletions(-)

commit 49b78de1b0819d82187f0d1ded65e7c678540aed
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 9 23:12:52 2017 -0800

    Removed rate limit setting.
    
    Necessary for jaor/geiser#174

 elisp/geiser-chicken.el | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

commit 3fa575feefb14bf472d69f5c2041d4ab51c3dae9
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 9 23:01:24 2017 -0800

    Improvements to Chicken completion speed
    
    Removed all of the symbol-interning code, and in the process greatly
    reduced the amount of CPU time.
    
    Should resolve jaor/geiser#174

 scheme/chicken/geiser/emacs.scm | 138 +++++++++++++++++++++---------------------------
 1 file changed, 59 insertions(+), 79 deletions(-)

commit 17fde7db7b03d61c7bf1f125669e2b3df8740db6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 29 22:51:04 2017 +0100

    Removing geiser-mit's dep on subr-x altogether
    
    It's only using string-empty-p from there, which is a function whose
    name is almost as long as its implementation, so we better try to be
    compatible with older emacsen (subr-x was introduced in emacs 24.4).

 elisp/geiser-mit.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 0947b0e724cd06c1279193633892f56cd888d319
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 28 05:03:59 2017 +0100

    Only requiring subr-x under eval-when compile

 elisp/geiser-mit.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 3cac7572f286c69de2b5cac626e1baca4af593a9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 22 04:01:45 2017 +0100

    Theoretically unnecessary save-excursion
    
    For some reason, one of our users is experiencing point jumps when
    calling `geiser-set-scheme'.  A save-excursion is all that's needed,
    even though it *shouldn't* be needed in the first place.

 elisp/geiser-mode.el | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit c3bc0998fff7da8eb78532bfd0c22af693775dc0
Author: Ziyi Yan <cxfyzy@gmail.com>
Date:   Sat Nov 18 03:19:45 2017 +0800

    Fix typo in installation's command
    
    `install-package` -> `package-install`

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit da22a526c1f683a90bb60840d05a6bb5f3a74ffe
Author: John Whitbeck <john@whitbeck.net>
Date:   Fri Nov 3 02:08:21 2017 +0100

    Support Chicken Scheme apropos =>2.3.0
    
    Chicken Scheme's apropos egg changed the identifiers in the return value
    of the `apropos-information-list` from `module#name` to `(module
    . name)`. This commit adds support for the new identifiers.

 scheme/chicken/geiser/emacs.scm | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)

commit c266950549a7a0841bf21e092fba632a1e061187
Author: Jan Nieuwenhuizen <janneke@gnu.org>
Date:   Tue Oct 10 21:43:59 2017 +0200

    guile: fix manual symbol lookup.
    
    * elisp/geiser-guile.el (guile--manual-look-up): Change parameters for
      info-lookup-symbol to string and 'scheme-mode.  Fixes lookup.

 elisp/geiser-guile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 839dc555861dbb77ea2632b8dd4d58904f33a396
Author: George D. Plymale II <georgedp@orbitalimpact.com>
Date:   Fri Sep 29 01:21:39 2017 -0400

    make a link to the subheading in the previous commit in parens.texi

 doc/parens.texi | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 6945e6b03d2537d930095c72cb4fc65061827176
Author: George D. Plymale II <georgedp@orbitalimpact.com>
Date:   Fri Sep 29 01:20:33 2017 -0400

    add subheading to repl.texi to caution about completion & the REPL
    
    as per the discussion at: https://github.com/jaor/geiser/issues/183

 doc/repl.texi | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

commit 3ea68948c6c4f03504d8232c3b8105e77e0ee483
Author: Mario Rodas <marsam@users.noreply.github.com>
Date:   Sat Sep 23 11:20:38 2017 -0500

    Do not set geiser last-prompt-end beyond of point-max

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 7c517cbc454a14670e6089c9570c1472ba3d3b8e
Author: Chaos Eternal <chaos@shlug.org>
Date:   Wed Sep 13 01:25:01 2017 +0800

    simple geiser-chez--display-error

 elisp/geiser-chez.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 9581e61f9d8839281fe42344dd5fe885ea7359ea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 28 02:53:22 2017 +0200

    Whitespace

 elisp/geiser-mode.el | 29 ++++++++++++++++++-----------
 1 file changed, 18 insertions(+), 11 deletions(-)

commit 87d8ad28396dd82920d55837cc6e8265b3f5991d
Author: Chaos Eternal <chaos@shlug.org>
Date:   Sun Aug 20 22:23:38 2017 +0800

    Add geiser-mode-eval-to-buffer-transformer
    
    geiser-mode-eval-to-buffer-transformer will take 2 argments:
    errstring and result
    when eval-to-buffer, the result will be transformed by this procedure
    e.g.
    (setq geiser-mode-eval-to-buffer-transformer
          (lambda (estring x)
            (let ((l (length x))
                  (p (seq-position x ?\n)))
              (if (and p (< (+ 1 p) l))
                  (format "\n#| %s%s\n  |#" estring x)
                (format ";;=> %s%s" estring x)))))

 elisp/geiser-mode.el | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit c8caccbadb56fd20ac77d770b03bbe2307014038
Author: Chaos Eternal <chaos@shlug.org>
Date:   Thu Aug 24 18:54:20 2017 +0800

    more reduction on geiser:eval, add test

 scheme/chez/geiser/geiser.ss | 58 ++++++++++++++++-----------------
 scheme/chez/geiser/test.ss   | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 117 insertions(+), 31 deletions(-)
 create mode 100644 scheme/chez/geiser/test.ss

commit 2e880649e4d59346585a5739041822b0c17802d0
Author: Chaos Eternal <chaos@shlug.org>
Date:   Thu Aug 24 01:16:19 2017 +0800

    rewritten geiser:eval to fix the following bug:
    
    when eval (make-violation)
    it shall return:  \#<condition &violation>
    but previous impletement will treat it as an ERROR.

 scheme/chez/geiser/geiser.ss | 53 ++++++++++++++++++++++++++++------------------------
 1 file changed, 29 insertions(+), 24 deletions(-)

commit 9d6d860dcd27fdea3c7a0f76f79863234555cafe
Author: Chaos Eternal <chaos@shlug.org>
Date:   Sun Aug 20 22:46:32 2017 +0800

    Alway pretty-print for results

 scheme/chez/geiser/geiser.ss | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ac2c6b7e3382d21113193059d9b19ba60b802a46
Author: Chaos Eternal <chaos@shlug.org>
Date:   Fri Aug 18 16:27:30 2017 +0800

    Handle exceptions of ChezScheme and multi-value as well
    
    - Capture exceptions of ChezScheme
    - handles multi-value return

 scheme/chez/geiser/geiser.ss | 31 +++++++++++++++++++++++++++----
 1 file changed, 27 insertions(+), 4 deletions(-)

commit dd08e3d83d070eb8d041d66217b4591a55729024
Author: Jonas Bernoulli <jonas@bernoul.li>
Date:   Fri Aug 4 20:49:31 2017 +0200

    Improve LICENSE text
    
    This is still the same license, but now it is closer to the text
    expected by tools that automatically extract license information.

 COPYING | 51 ++++++++++++++++++++++++++-------------------------
 1 file changed, 26 insertions(+), 25 deletions(-)

commit 49a9e902e404d030e4b4ad22f75548a1b855a8fd
Author: Andrew Sackville-West <andrew@MacBook-4.local>
Date:   Tue Jul 4 09:51:43 2017 -0700

    replace broken autocomplete-mode link
    
    used Emacs Wiki link since it links on to
    the code and is likely to be kept relatively up-to-date

 doc/install.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5ae5488a6d94fcd74d573049b58f8c2e7ff7012
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 2 03:27:12 2017 +0200

    Fix for the fix for broken links
    
    Actually, programming-musings.org is no longer a domain i pay for, and
    the "canonical" reference to my blog post is in jaortega.wordpress.com.

 doc/parens.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 99340355a2af2f2757349cd1cebd51dfcd4b1d5e
Author: Andrew Sackville-West <andrew@MacBook-4.local>
Date:   Sat Jul 1 15:31:48 2017 -0700

    fix broken links to incremental REPL references

 doc/parens.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 41059d6295dbaa207b2203fb6b78003de4888714
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Tue Apr 11 12:42:24 2017 -0300

    Preserve the position of (point) after evaling
    
    After evaling the last expression, if not inserting its value into
    buffer, leave (point) at its original position.

 elisp/geiser-mode.el | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit ac349b913616bea9c1b4f5a0f1ae06f2f83d7a20
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Tue Apr 11 12:42:23 2017 -0300

    Eval last expression even after a comment char
    
    Scan for beginning and end of a sexp, instead of using (point) as the
    end.
    
    Previously, if (point) was after a comment character, the REPL would
    freeze.

 elisp/geiser-mode.el | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit b75e0376942c1ee54f7d173362d4a38e665342f9
Author: James C. De Ricco <jamescdericco@gmail.com>
Date:   Wed Mar 22 13:01:39 2017 -0400

    repl.texi: Put @altr on its own line so "Other" is not omitted

 doc/repl.texi | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit d6548ed7d1f44f3addd5cea98a63209bc51f454f
Author: James C. De Ricco <jamescdericco@gmail.com>
Date:   Tue Mar 21 00:57:24 2017 -0400

    Don't assign the (field t) property to old REPL inputs
    
    Previously, Geiser added a (field t) property to inputs before adding
    them to the REPL history so it can determine what characters in the
    buffer belong to old input and yank it when a user pressed
    enter (geiser-repl--maybe-send) on it. When users recalled an old
    input with "M-p" (comint-previous-matching-input-from-input), the old
    input with its (field t) property were inserted after the current
    prompt. Since old inputs were not "front-sticky," when point was just
    after the current prompt but before the characters of the old input,
    Emacs considered point to be outside of the (field t) field; this
    prevented users from using some movement commands such as forward-word
    to move point into the old input text. Furthermore, when users
    inserted text before the old input or yanked other old inputs
    afterwards, this new text did not have the field property and so Emacs
    restricted point movement to and from the old text with the (field t)
    field.
    
    This resolves the issue by not adding the (field t) property to old
    inputs and instead leverages comint's ability to assign the output
    field to all non-input (by setting comint-use-prompt-regexp to
    nil). It should resolve the issue reported in "[Geiser-users] Problem
    with prompt at history item" by Hamish Ivey-Law
    (https://lists.nongnu.org/archive/html/geiser-users/2014-12/msg00001.html).

 elisp/geiser-repl.el | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

commit 166593c68b66276e36c7d91a9653bb1c44650afc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 1 23:55:35 2017 +0100

    A note on dir-locals and load-path variables
    
    With that in the documentation, i'd taken less time to remember the
    very existence of geiser-guile-load-path, and the fact that paths are
    added also to the compiled load path... but then i guess it's nice to
    re-read my code once in a while.

 doc/repl.texi         | 5 +++++
 elisp/geiser-guile.el | 8 +++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 87fb39ce30ac7fdde8c86ed7c70cd15617b7477d
Author: Chaos Eternal <chaos@shlug.org>
Date:   Fri Jan 27 10:40:09 2017 +0800

    bug fix: error message get displayed

 elisp/geiser-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 46b4c82278029d7193176b72ed3f0d3b1fa8899a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 17 03:34:33 2017 +0100

    Not inserting a trailing \n when eval prefix is empty
    
    And, on reflection, it's better we do the same thing with the ERROR
    insertion...

 elisp/geiser-mode.el | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit ddbd3df1243679c43855d86f4e81c54b0ea1c3d1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 17 03:23:02 2017 +0100

    Not inserting an additional \n when eval prefix is empty

 elisp/geiser-mode.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 1518f0c9ab370327c053faa6c0c1b5571b68eb5e
Author: Chaos Eternal <chaos@shlug.org>
Date:   Thu Jan 12 13:50:44 2017 +0800

    Make eval-last-sexp-to-buffer customizable

 elisp/geiser-mode.el | 30 +++++++++++++++++++++++++-----
 1 file changed, 25 insertions(+), 5 deletions(-)

commit 6893f692259c0241049bf614147160c44dd4ba3e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 3 01:57:51 2016 +0100

    Bug fix: expanding file name at the right time
    
    We were expanding the path of files to be loaded at the wrong place in
    the wrong way.  This should be better and address bug #196.

 elisp/geiser-compile.el | 2 +-
 elisp/geiser-guile.el   | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

commit ae895088fab7593295dc16bc7d58a67321f92d46
Author: Peter Wang <ptr.wang@gmail.com>
Date:   Sat Nov 26 17:06:38 2016 +0800

    fix malformed argument lists.
    
    Emacs trunk does not support arguments list like (lambda (&rest) nil)
    anymore, which breaks geiser and errors with "Invalid function: "

 elisp/geiser-eval.el | 2 +-
 elisp/geiser-impl.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 8cbb0f27b3a9fbdd7ebfc425e9119fec8ccbf45f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 26 05:14:36 2016 +0100

    Make guile's load-file happier with ~ abrevs
    
    An attempt to address #194.

 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 847ccd4f86714ba145f2b19af6ddab2441f5c6cb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 9 18:50:31 2016 +0100

    Same as before, but for geiser-mit-source-directory: it's 'directory

 elisp/geiser-mit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a54f9c16d4aa88db68a7faf1a675feebf4166907
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 9 18:33:50 2016 +0100

    Same as before, but for geiser-mit-source-directory: it's 'directory

 elisp/geiser-mit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c6c41bcfaf54af29c6f0403e6894fa77c13d1e49
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 9 18:30:28 2016 +0100

    It's file, not filename (should fix #190)

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 16035b9fa475496f7f89a57fa81455057af749a0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 24 14:52:49 2016 +0200

    Missing geiser-{chibi,chez}.el in dist

 elisp/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 9d4a55d9c05ec90da2dba98ce4b2dbdbcab84bac
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 24 03:21:53 2016 +0200

    Missing chibi and chez support files
    
    Should fix #188, and i'm not generating a new version for this unless
    some distribution maintainer is asking.

 scheme/Makefile.am | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 594dac485fe15d6414f1fe4dc71e21be7de7ee33
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 10 22:58:40 2016 +0200

    chez, chibi and mit belong into geiser-active-implementations
    
    At least by default.

 elisp/geiser-impl.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 8ef6a9321d81ff478cfd376023eb84b8a819a991
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 5 23:41:33 2016 +0200

    Release 0.9

 AUTHORS         |  7 +++++++
 NEWS            |  4 +++-
 configure.ac    |  4 ++--
 doc/geiser.texi |  2 +-
 doc/macros.texi | 13 ++++---------
 doc/thanks.texi |  3 +++
 doc/web.texi    |  4 ++--
 7 files changed, 22 insertions(+), 15 deletions(-)

commit e6535d461bc33ee0d7353b722f2fd5f8ee2bb2e5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 2 03:54:29 2016 +0200

    racket: indentation for 'shared'

 elisp/geiser-racket.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 22d308cecea6becc718ac0e347867dade354f11c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 30 06:09:11 2016 +0200

    gitignoring mit scheme's compilation artifacts

 .gitignore | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit cec661b7d0e6d0eda31a97b5621d361ae5c71de3
Author: Jordan Brown <mrhmouse@gmail.com>
Date:   Wed Sep 21 10:07:21 2016 -0400

    Use (car (process-lines ...)) instead of (shell-command ...)
    
    `shell-command` assumes Bourne-shell-compatible quoting, which
    doesn't work when the user isn't using a Bourne-compatible shell.
    
    Instead of futzing about with quoting, we can just use `process-lines`
    to execute a process and pass it arguments directly.

 elisp/geiser-chez.el    |  4 +---
 elisp/geiser-chibi.el   |  7 +++----
 elisp/geiser-chicken.el |  5 +----
 elisp/geiser-guile.el   |  5 +----
 elisp/geiser-mit.el     | 10 ++++++----
 elisp/geiser-racket.el  |  5 +----
 6 files changed, 13 insertions(+), 23 deletions(-)

commit f8ddc4e540ec9c193efde588e6bb8cb887212820
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Jul 17 22:11:57 2016 +0300

    Expand socket file name for 'geiser-connect-local'

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 557c72ac19c42147771791c60bc45834943e6d24
Author: dleslie <dleslie@marvin-linux>
Date:   Sat Sep 17 15:00:04 2016 -0700

    Allows Chicken to limit the number of symbols provided to Geiser
    
    - Also cleaned up the namespace a little.

 elisp/geiser-chicken.el         | 19 +++++++++++++------
 scheme/chicken/geiser/emacs.scm | 33 +++++++++++++++++++++------------
 2 files changed, 34 insertions(+), 18 deletions(-)

commit 219abf6230d1379eb302725f28461fda8405b5e3
Author: Chunyang Xu <xuchunyang.me@gmail.com>
Date:   Tue Sep 6 19:47:24 2016 +0800

    Add link to project homepage
    
    C-h P (`display-package') can make use of it.

 elisp/geiser.el | 1 +
 1 file changed, 1 insertion(+)

commit 8a3f5e34b6b141873c55587617db4e0ddb985b92
Author: Chunyang Xu <xuchunyang.me@gmail.com>
Date:   Tue Sep 6 19:45:47 2016 +0800

    Fix link to melpa-stable

 doc/install.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 25fdd8dcda3fabcfffe983b7cadb3196dbca801b
Author: Fice T <fice-t@protonmail.com>
Date:   Sat Aug 13 23:09:02 2016 -0600

    Pacify byte-compiler a bit

 elisp/geiser-company.el | 5 +++++
 elisp/geiser-doc.el     | 1 +
 2 files changed, 6 insertions(+)

commit cc8f043da48ffe49e5273b0478e3d30c998e358e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 26 01:27:48 2016 +0200

    Not signalling errors for company-mode completions
    
    ... so that we don't interfere with other active backends, and following
    the same policy as in the rest of company-mode geiser methods. See also
    the discussion in github's #173.

 elisp/geiser-company.el | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

commit 20a1a2a6a3db2259765be232ab45e83b82a6b6d3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 24 22:45:46 2016 +0200

    Making autodoc failures silent
    
    As requested in github issue #173.  Seems it's confusing people, which
    is exactly the problem it was originally trying to avoid!

 elisp/geiser-autodoc.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 9f93205d32bfe1725ec39779493d12fbbe5fd605
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Aug 9 16:34:31 2016 -0700

    Adds required modules to binary parameters
    
    -This causes chicken to fail to run if it cannot find the required
     modules for Geiser; and will tell the user that the module is missing.

 elisp/geiser-chicken.el | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 7590c8029791e512012102ab0c07b2684e09d09d
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Aug 9 15:32:04 2016 -0700

    Disable aggressive prefix assumption
    
    This was causing significant typing delay with little to no benefit.
    
    Disabled until a better solution can be found.

 scheme/chicken/geiser/emacs.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5edfb584bc5d5ae8b3e75a231227d2a22946eadb
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Aug 9 14:55:59 2016 -0700

    Remove compilation of chicken module
    
    This was causing confusion and bug reports on a semi-regular
    basis. Disable it for now until a better solution is made.

 elisp/geiser-chicken.el | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

commit 7e919d319632a5cd93270ee82e96e0b960446352
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Aug 9 14:55:39 2016 -0700

    Add chez, mit, and chibi to autoload

 elisp/geiser.el | 3 +++
 1 file changed, 3 insertions(+)

commit 93d629bbb6b913b55cda323a6d0eebadf5676f5d
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Mon Feb 15 17:44:41 2016 -0800

    Minor typo

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 208056444fe8a16947f0f641a3a72459fdf24eef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jul 26 19:00:12 2016 +0200

    README as an org file

 README     | 1 +
 README.org | 1 +
 2 files changed, 2 insertions(+)
 create mode 120000 README.org

commit 8c8583991007aa3a1831310be5d637104a918a43
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 17 18:54:35 2016 +0200

    Be in good terms with haskell-mode
    
    Avoid redefining font-lock-ensure, so that haskell-mode doesn't get mad
    at us.  Should close github's #164.

 elisp/geiser-base.el   | 8 --------
 elisp/geiser-syntax.el | 5 +++--
 2 files changed, 3 insertions(+), 10 deletions(-)

commit 620f0d039afb7450fb7b27ee953129f7597e61ea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 13 01:59:02 2016 +0200

    (end-of-line 0) > (forward-line -1) (end-of-line)

 elisp/geiser-repl.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit a2da78d2d2383ce6a69b10dd2c8cb1e0fb6e7a15
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 13 01:37:30 2016 +0200

    Fixing again, sorry about that

 elisp/geiser-syntax.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3e428e623bf8355eaf86960077df5adba8b39237
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 13 01:37:09 2016 +0200

    A few byte-compilation warnings silenced

 elisp/geiser-doc.el  | 4 ++--
 elisp/geiser-mit.el  | 1 +
 elisp/geiser-repl.el | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

commit 368d12c1637be2cd66e0084524cae9945dcec18d
Author: Jose Antonio Ortega Ruiz <jao@imladris.local>
Date:   Sun Jun 12 22:22:26 2016 +0200

    New key bindings: C-c C-c, C-c C-l

 README               |  3 +++
 doc/cheat.texi       | 12 ++++++++++++
 elisp/geiser-mode.el |  8 ++++----
 elisp/geiser-repl.el |  1 +
 4 files changed, 20 insertions(+), 4 deletions(-)

commit 1f4885c1e5e0ade2883cdf02255a7986df8e4f86
Author: Jose Antonio Ortega Ruiz <jao@imladris.local>
Date:   Sun Jun 12 22:21:01 2016 +0200

    Fix for the by now famous syntax keywords patch

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2ca38a52dea984c88056c40500fc39c51268b07f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 12 19:39:01 2016 +0200

    New commands geiser-repl-{previous,next}-prompt
    
    When using a prompt regexp, comint's version of these commands
    misbehave (they try to reuse forward-paragraph, and that's not quite
    it), so we're implemeting our own here in a very straightforward way.
    We also bind the usual C-c C-p and C-c C-n to them.  It only remains to
    b seen whether advising the original ones is worth the trouble.

 elisp/geiser-repl.el | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

commit 0a3d6ca624332470f406e579f3ed5912169273ea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 12 18:32:48 2016 +0200

    Real fix fontification on scheme switch

 elisp/geiser-base.el   | 10 +++++++++-
 elisp/geiser-mode.el   |  4 +++-
 elisp/geiser-syntax.el | 13 ++++++++-----
 3 files changed, 20 insertions(+), 7 deletions(-)

commit 94210cde9788f9ae677767a531f96a873f5feaf0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 12 17:51:28 2016 +0200

    REPLs not started by the font-lock buffer
    
    This one should fix github's issue #132.  There's still the glitch that
    scheme strings are fontified without taking into account extra keywords.

 elisp/geiser-mode.el   |  1 +
 elisp/geiser-syntax.el | 22 +++++++++++++---------
 2 files changed, 14 insertions(+), 9 deletions(-)

commit bebd3944c130a75c5d39eb7d50439fe524b57d39
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 12 04:33:04 2016 +0200

    Removing stale keywords when switching to another scheme
    
    Addresses github's #158, and its implementation is really easy (kudos to
    fice-t, also for telling me about bound-and-true-p).

 elisp/geiser-mode.el   |  3 ++-
 elisp/geiser-syntax.el | 10 ++++++++--
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 6c9b307d38716c922542b395fab1e676c34b3173
Author: Fice T <fice-t@protonmail.com>
Date:   Sat Jun 11 18:18:10 2016 -0600

    Lower minimum MIT Scheme version

 README              | 6 ++++--
 doc/macros.texi     | 2 +-
 elisp/geiser-mit.el | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

commit 84db2d2cd28c2f3185483f52d1d3e83b8ee628ea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 12 00:54:54 2016 +0200

    Registering *global* font-lock keywords in REPLs at the right time
    
    We were adding only the scheme-specific ones.

 elisp/geiser-repl.el   | 2 +-
 elisp/geiser-syntax.el | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 345a0a0281f65755756f5a3282aa953764726ce6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 11 21:11:05 2016 +0200

    Registering font-lock keywords in REPLs at the right time
    
    We were doing it before the buffer's implementation, and the
    implementation-specific keywords were not found.  Should fix github's
    issue #159.

 elisp/geiser-repl.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 11 18:37:36 2016 +0200

    Cleanups to the show/jump debug buffer mess
    
    Let's see if i finally got this right...

 elisp/geiser-compile.el |  9 ++++-----
 elisp/geiser-debug.el   | 17 ++++++++---------
 elisp/geiser-guile.el   |  5 ++---
 3 files changed, 14 insertions(+), 17 deletions(-)

commit d8cb36651aa628075df494c0a1515d98d5a75adf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 29 03:39:51 2016 +0200

    Fixes for geiser-debug-jump-to-debug-p and geiser-debug-show-debug-p
    
    I wonder if this has ever worked fine: geiser-debug--display-retort was
    a little mess.  It should be a bit better now, but Guile is still
    displaying funny messages.

 elisp/geiser-debug.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 6354c3b431af3de15218ebb264252a4bdc702940
Author: izuo <izuo@outlook.com>
Date:   Tue May 24 19:01:19 2016 +0800

    fix call the chez scheme executable.

 elisp/geiser-chez.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 2e335695fc1a4a0b520b50deb761b958194cbec4
Author: Peter <craven@gmx.net>
Date:   Mon May 2 11:03:30 2016 +0200

    Chez: add rudimentary autodoc support

 scheme/chez/geiser/geiser.ss | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 48 insertions(+), 1 deletion(-)

commit ddf6ce8db51ab270faee5edb723f91c827e62a57
Author: Peter <craven@gmx.net>
Date:   Sun May 1 10:44:06 2016 +0200

    geiser-chibi: Implement autodoc for procedures in known modules

 scheme/chibi/geiser/geiser.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++-
 scheme/chibi/geiser/geiser.sld |  2 +-
 2 files changed, 45 insertions(+), 2 deletions(-)

commit 366f6ecbd3dd9237ded638d7c6ad04dfec90f19d
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 21:32:06 2016 +0200

    Fix syntax

 doc/repl.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7c81478ba891fd0f9d38bf82a823fff076a26b70
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 20:46:03 2016 +0200

    Add MIT/GNU, Chez and Chibi to docs

 doc/install.texi | 16 ++++++++++++----
 doc/macros.texi  |  3 +++
 doc/repl.texi    | 54 +++++++++++++++++++++++++++++++++++-------------------
 3 files changed, 50 insertions(+), 23 deletions(-)

commit 2b5e9c19e79e32b5cece3392dab79e0a04cbfc3f
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Apr 30 13:01:38 2016 +0300

    Fix REPL restart if REPL is alive

 elisp/geiser-repl.el | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

commit 18f71c2ef874a3b9553640b016860c222a705fdd
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 19:39:03 2016 +0200

    Add chez to Makefile, add autoloads for chez

 Makefile.am     | 3 +++
 elisp/geiser.el | 7 +++++++
 2 files changed, 10 insertions(+)

commit 263b23388ff2a45c7fe26ee14030b6229dddcada
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 19:34:24 2016 +0200

    Clean-up elisp code

 elisp/geiser-chibi.el | 21 ---------------------
 1 file changed, 21 deletions(-)

commit cc8c6e6b5b5a246ba2aee600847c4a89a0ed33c0
Author: Peter <craven@gmx.net>
Date:   Thu Apr 28 16:29:48 2016 +0200

    Use faster module list

 scheme/chibi/geiser/geiser.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit d9612b615af3cb55d98503a1a553a070f75149f2
Author: Peter <craven@gmx.net>
Date:   Tue Apr 26 22:31:09 2016 +0200

    Add preliminary support for Chibi Scheme

 elisp/geiser-chibi.el          | 159 +++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/chibi/geiser/geiser.scm |  49 +++++++++++++++
 scheme/chibi/geiser/geiser.sld |   9 +++
 3 files changed, 217 insertions(+)
 create mode 100644 elisp/geiser-chibi.el
 create mode 100644 scheme/chibi/geiser/geiser.scm
 create mode 100644 scheme/chibi/geiser/geiser.sld

commit fea631c41126998724f0af636ee5c90d980a7b34
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 19:27:14 2016 +0200

    Clean-up elisp code

 elisp/geiser-chez.el | 21 ---------------------
 1 file changed, 21 deletions(-)

commit 349923b72a5cedd38a386df3b9e110714c033ed9
Author: Peter <craven@gmx.net>
Date:   Sat Apr 30 19:26:57 2016 +0200

    Add chez to Makefile, add autoloads for chez

 Makefile.am     | 3 +++
 elisp/geiser.el | 7 +++++++
 2 files changed, 10 insertions(+)

commit 38c118ea2d95e68a6854579a281eb8af19064902
Author: Peter <craven@gmx.net>
Date:   Tue Apr 26 22:27:26 2016 +0200

    Add preliminary support for Chez Scheme

 elisp/geiser-chez.el         | 157 +++++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/chez/geiser/geiser.ss |  62 ++++++++++++++++++++
 2 files changed, 219 insertions(+)
 create mode 100644 elisp/geiser-chez.el
 create mode 100644 scheme/chez/geiser/geiser.ss

commit 4c8b3dee30ce7258602bef356337def95fcccd7e
Author: Peter <craven@gmx.net>
Date:   Thu Apr 28 16:27:08 2016 +0200

    Break long lines

 scheme/mit/geiser/emacs.scm | 57 ++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 43 insertions(+), 14 deletions(-)

commit fe2c79adce933b29e4bfcc6ca6f5c5e5546095a5
Author: Peter <craven@gmx.net>
Date:   Tue Apr 26 07:19:36 2016 +0200

    Add preliminary support for MIT/GNU Scheme.

 Makefile.am                   |   3 +
 README                        |   1 +
 elisp/Makefile.am             |   1 +
 elisp/geiser-mit.el           | 162 ++++++++++++++++++++++++++++++++
 elisp/geiser.el               |   7 ++
 scheme/Makefile.am            |   6 +-
 scheme/mit/geiser/compile.scm |   9 ++
 scheme/mit/geiser/emacs.scm   | 252 ++++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/mit/geiser/geiser.pkg  |  20 ++++
 scheme/mit/geiser/load.scm    |  11 +++
 10 files changed, 471 insertions(+), 1 deletion(-)
 create mode 100644 elisp/geiser-mit.el
 create mode 100644 scheme/mit/geiser/compile.scm
 create mode 100644 scheme/mit/geiser/emacs.scm
 create mode 100644 scheme/mit/geiser/geiser.pkg
 create mode 100644 scheme/mit/geiser/load.scm

commit dcaf849ccdfd488fb26e0d9131bbc59928690e0d
Author: Alex Kost <alezost@gmail.com>
Date:   Mon Apr 11 10:54:48 2016 +0300

    Define 'geiser-xref-mode' with 'define-derived-mode'

 elisp/geiser-xref.el | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit 0053f1b53ffeb94298ceb99b7127c86d4fd43dbe
Author: Alex Kost <alezost@gmail.com>
Date:   Mon Apr 11 10:52:41 2016 +0300

    Define 'geiser-debug-mode' with 'define-derived-mode'

 elisp/geiser-debug.el | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit afbdc0d0ba30f7b2268a2ee2906cbb7938ec2230
Author: Alex Kost <alezost@gmail.com>
Date:   Mon Apr 11 10:49:38 2016 +0300

    Define 'geiser-doc-mode' with 'define-derived-mode'

 elisp/geiser-doc.el | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

commit 29ed32892b05ad7886c49e5f4a22f07779ddc196
Author: Alex Kost <alezost@gmail.com>
Date:   Mon Apr 11 10:48:22 2016 +0300

    Initialize 'geiser-doc-mode-map' inside defvar

 elisp/geiser-doc.el | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit 8fb8531b9ad6b29fe027469d615976b19ef32b36
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Apr 10 10:57:11 2016 +0300

    Fix indentation of named 'match-let'
    
    This fixes a regression introduced by commit
    424553e017718c54e219212b27a32b341ec6bd28.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ecc57384eb7fe305a7aba05b738bde1da7a5e21
Author: Alex Kost <alezost@gmail.com>
Date:   Mon Apr 11 19:26:17 2016 +0300

    Do not use 'geiser-xref--with-buffer' before it is defined
    
    This is a fix similar to the one made in commit
    8e75455dfbd46355d777c26366e7ccfcb59ace20.

 elisp/geiser-xref.el | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

commit f6e86d9526288dd05b6ffedca29a8d373a44eae5
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Apr 10 14:07:33 2016 +0300

    Use assq instead of assoc in request and connection wrappers

 elisp/geiser-connection.el | 32 ++++++++++++++++----------------
 elisp/geiser-eval.el       | 22 ++++++++++++++++------
 2 files changed, 32 insertions(+), 22 deletions(-)

commit 76ef0bed8ee99ea0050240e4474fde3845826d96
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Apr 10 14:05:00 2016 +0300

    Remove double call in 'geiser-con--connection-add-request'
    
    Avoid calling 'geiser-con--request-string' twice by wrapping it into
    'let'.

 elisp/geiser-connection.el | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

commit 7626c49bde93463e2a509ac31f8dbc8feed3d973
Author: Alex Kost <alezost@gmail.com>
Date:   Thu Apr 7 16:25:43 2016 +0300

    Fix REPL reconnecting
    
    This fixes 2 issues:
    
    1. Reconnecting to a remote process prompts for host/port, although it
       is not needed.
    
    2. 'geiser-connect' should be used only if 'geiser-repl--address' is a
       host/port pair.  When it is a socket file name,
       'geiser-connect-local' should be used.

 elisp/geiser-repl.el | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

commit c425acc5528bd24ca90fa7b5b3c3edba12b8f4fb
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Mon Feb 15 17:32:08 2016 -0800

    Fix for #127

 scheme/chicken/geiser/emacs.scm | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

commit e80ca5a541a08a08be96f7c3a3d212cb51bfdbeb
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Mon Jan 25 09:21:35 2016 -0800

    Fixes a potential endless loop.

 scheme/chicken/geiser/emacs.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 04b0b3915741860a61532059b7e5291b7b98e031
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Jan 19 20:45:09 2016 -0800

    Fuzzy matching for Chicken AutoDoc and Completions
    
    Because Chicken allows symbols to be imported with prefixes, and because
    'apropos' does not provide any utility to match with the loaded
    prefixes, it is difficult to acquire information about prefixed symbols.
    
    This solution hacks around the issue by providing naive
    fuzzy-matching. If no match for a symbol can be found then the first
    character is dropped and matching is attempted again; the process is
    repeated until matches are found or the entire symbol is consumed.
    
    Also removes the (now redundant and slow) geiser-chicken-prefix-delimiters.

 elisp/geiser-chicken.el         | 23 +++-------------
 scheme/chicken/geiser/emacs.scm | 73 +++++++++++++++++++++++++++++--------------------
 2 files changed, 47 insertions(+), 49 deletions(-)

commit 296c3b687d8eeb520c7ccf52282e46dfe1ef3a4e
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Thu Jan 7 16:32:38 2016 -0800

    Behave nicely with other company backends
    
    company-backends should not be overridden by modes, as users may have
    additional backends that they wish to use. The appropriate behaviour is
    to add your backend to the company-backends list.
    
    Also removed the overriding of what ought to be user-controlled variables.

 elisp/geiser-company.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 75373ff056b536843564b3f54272417393eb4ceb
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Thu Dec 31 12:05:40 2015 -0800

    Performance Improvements
    
    No longer rely on Apropos for matching. Apropos would perform a slow substring or regex search at every call; as well as rebuilding the entire list of available symbols. Now the list of symb

 scheme/chicken/geiser/emacs.scm | 192 ++++++++++++++++++++++++++----------------------
 1 file changed, 103 insertions(+), 89 deletions(-)

commit 8c99b5e67b0e2ddaad8c9f1323af35b34044d9df
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Dec 30 23:42:12 2015 +0100

    Oops: shell-quote-binary -> shell-quote-argument

 elisp/geiser-chicken.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8e75455dfbd46355d777c26366e7ccfcb59ace20
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Dec 27 04:11:50 2015 +0100

    Avoiding uses of geiser-doc--with-buffer before its definition
    
    As patiently pointed out by Alex Kost in the discussion of issue #121,
    using the macro defined by the geiser-popup--define macro before its
    actual definition causes problems when geiser is loaded after
    compilation.  Thanks again, Alex and Federico.

 elisp/geiser-doc.el | 129 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 65 insertions(+), 64 deletions(-)

commit a0b470fec83758abe2f597142fba969ee8626277
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 26 23:47:31 2015 +0100

    Quoting binary on version checks (issue #117)
    
    We could probably be even more robust, but i am being a bit lazy
    instead.

 elisp/geiser-chicken.el | 3 ++-
 elisp/geiser-guile.el   | 4 +++-
 elisp/geiser-racket.el  | 4 +++-
 3 files changed, 8 insertions(+), 3 deletions(-)

commit d9f6fa2e7458905aa601805352d7a7d9e1037570
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 14 04:35:40 2015 +0100

    NEWS updated with the good tidings

 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

commit b222e5535ff372441a5b366b19a42555e96f51bd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 14 04:22:48 2015 +0100

    Fixing guile 2.2 compatibility

 scheme/guile/geiser/evaluation.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 29854dfe5560a9be1c32f2b2e14dc8132c2f23ae
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Dec 12 17:21:31 2015 +0300

    Fix geiser-connect-local for non-interactive use
    
    Move prompting for a socket file name to the interactive form.

 elisp/geiser-repl.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit faa5da7c249ced4434020619e890f44190caef8a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Dec 13 22:15:48 2015 +0000

    Support for guile-2.2
    
    Using cond-expand to provide support for the new world of guile 2.2

 scheme/guile/geiser/evaluation.scm | 64 +++++++++++++++++++++++++++++++---------------
 1 file changed, 44 insertions(+), 20 deletions(-)

commit b662276623dbfdcd2542af932f2bc0c5eb2d97b1
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 12:56:32 2015 -0800

    Removed changes to geiser-connection

 elisp/geiser-connection.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c633fbb06cd9dae6001b629697326a3476e7f3ca
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 08:33:47 2015 -0800

    Minor cleanup
    
    Exposes geiser-load-paths, makes add-to-load-path and find-file
    'unsafe'. Those needn't be memoized and would be strange if they are.
    
    This should finish fixing jaor/geiser#114

 scheme/chicken/geiser/emacs.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit d4a2f79a611cfef41dce1a035d281c62a0d9d8bf
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 08:13:08 2015 -0800

    Minor changes to help with debugging completions

 scheme/chicken/geiser/emacs.scm | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

commit 23c3462311d0fd3da0bd2ffb924f237c620c80be
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 08:01:06 2015 -0800

    Completions didn't work after first symbol in sexp

 elisp/geiser-chicken.el | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

commit 585808c8dc6916482a544efe59c425a13641f119
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 07:32:37 2015 -0800

    No longer show arguments as strings.
    
    That was annoying.

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b801b7cfbf95695bd2184d23a631c7424f52a1b8
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 07:30:06 2015 -0800

    Right-most character of arguments was being cut

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f1f69cf0a60c6f70dee5745bbecced1a54393520
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Dec 5 07:24:59 2015 -0800

    Allows redefinition of modules
    
    If one were to re-evaluate a buffer with a module in it there would be
    problems because it would appear as a nested request.
    
    Solution:
    - Check if a module definition is a fore-most request, and if so,
    evaluate at top level

 scheme/chicken/geiser/emacs.scm | 32 +++++++++++++++++++-------------
 1 file changed, 19 insertions(+), 13 deletions(-)

commit 49da44f6373718400833585dd494a35f71205d6e
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Wed Dec 2 21:47:23 2015 -0800

    Fixes for Literals, Errors and Modules
    
    If literals were present chicken wouldn't provide any autodocumentation
    due to an error. Module evaluation was failing due to poor
    input. Chicken's Error output was failing to parse
    
    - Filter out all non-symbols from the autodoc set
    - Properly escape module names
    - Add "Error" to the set of accepted error prefixes

 elisp/geiser-chicken.el         |  5 +++--
 elisp/geiser-connection.el      |  2 +-
 scheme/chicken/geiser/emacs.scm | 37 +++++++++++++++++++++----------------
 3 files changed, 25 insertions(+), 19 deletions(-)

commit d44d5cbda1013b682ab6c3a3938c7d484e3ce885
Author: Syohei YOSHIDA <syohex@gmail.com>
Date:   Wed Oct 21 16:59:12 2015 +0900

    Correct misspellings

 README | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 3319d2785711aa7e717f5d68a09523307bf126f1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 21 02:29:46 2015 +0200

    Use OS-specific quotes when asking for versions
    
    Fixes #95.  This is @kovrik's patch, with 80-columns max formatting.

 elisp/geiser-chicken.el | 5 +++--
 elisp/geiser-guile.el   | 3 ++-
 elisp/geiser-racket.el  | 3 ++-
 3 files changed, 7 insertions(+), 4 deletions(-)

commit c6f17b25200e36f80d812684a2127b451fc11817
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Oct 13 20:53:45 2015 +0200

    Version 0.8.1

 NEWS            | 4 ++++
 configure.ac    | 2 +-
 doc/macros.texi | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

commit 733ea7a4ed1f527b70764a52fe865926d90f5177
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Oct 13 20:47:38 2015 +0200

    Oops: font-lock-ensure is from the future
    
    Should fix #105

 elisp/geiser-syntax.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 25810009873b9b9acdfc3a291ea7c3ec75ab018f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 12 12:36:23 2015 +0200

    download-mirror.savannah.gnu.org ftw
    
    Seems this site is updated better than the canonical
    download.savannah.gnu.org (which depends on mirror propagation).

 doc/macros.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 31ceeeb942bcfc0336189e275e92e20b0b8b00a7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 12 12:21:48 2015 +0200

    Version 0.8 released

 AUTHORS         |  6 +++++-
 NEWS            | 16 ++++++++++++++++
 THANKS          |  3 +++
 configure.ac    |  2 +-
 doc/macros.texi |  8 ++++----
 doc/thanks.texi |  3 +++
 6 files changed, 32 insertions(+), 6 deletions(-)

commit 2c8e3e042ef8da63550fec3982b462773acafe17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 12 12:04:27 2015 +0200

    So font-lock-fontify-buffer is for interactive use
    
    Fixed by using font-lock-ensure instead

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 48ba8943e8ad63f778cf89b6e7dc41313127fffb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 12 12:02:18 2015 +0200

    Keeping the elisp compiler happy
    
    Mainly by reordering definitions so that functions are not used before
    defined.  There are a couple of places where the compiler and I
    disagree (it complains withing eval-after-load), and a valid complain
    about functions defined via geiser-popup--define that should be
    addressed).

 elisp/geiser-debug.el  |  3 ++-
 elisp/geiser-eval.el   | 28 ++++++++++++++--------------
 elisp/geiser-racket.el |  4 +++-
 elisp/geiser-repl.el   |  3 +--
 elisp/geiser-syntax.el | 36 ++++++++++++++++++------------------
 5 files changed, 38 insertions(+), 36 deletions(-)

commit 697d0ac94d2d63bf755931122beafcbe1304b321
Merge: 373b9a4 5b2bd49
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 5 15:40:17 2015 +0200

    Merge remote-tracking branch 'alezost/indent+highlight'

commit 373b9a499dd4f26886c0e54612e638dd529bcc6f
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Oct 3 21:33:21 2015 -0700

    Stopped over-aggressive memoization
    
    It doesn't make sense to memoize the following:
    geiser-start-server
    geiser-macroexpand

 scheme/chicken/geiser/emacs.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 466df84526032315d119b48f95d9e70ab707133e
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Oct 3 19:39:18 2015 -0700

    Minor improvements
    
    Removed the unnecessary csi reference
    Added a flag to force build an so

 elisp/geiser-chicken.el         | 2 +-
 scheme/chicken/geiser/emacs.scm | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

commit bb7b181ecfd6ba588b19fd896345fcf39e242345
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Oct 3 14:35:03 2015 -0700

    Turn off debug log

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ea8d1f97119bdd058ae918ca7f7fcb3279b70a7f
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Oct 3 14:34:21 2015 -0700

    Adds memoization
    
    Clears memo when anything other than a safe geiser call is made.
    Removes the last calls to regex within the thing

 scheme/chicken/geiser/emacs.scm | 50 +++++++++++++++++++++++++++++++++++--------------
 1 file changed, 36 insertions(+), 14 deletions(-)

commit 57d6934beb882c6dcd7119f7a2ebe04ab977b9c5
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Oct 3 12:39:05 2015 -0700

    Converts toplevel methods to prefixed methods
    
    This seems to improve speed; in a large environment I witnessed a
    regular 100ms increase in speed for autodoc.

 elisp/geiser-chicken.el         |  34 ++++++---------
 scheme/chicken/geiser/emacs.scm | 114 ++++++++++++++----------------------------------
 2 files changed, 46 insertions(+), 102 deletions(-)

commit d109d97c262e1e20de62bfdd74f421f911494405
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Thu Oct 1 22:39:44 2015 -0700

    Refactored to reduce the reliance on regex.
    
    Improves speed by an order of magnitude.

 scheme/chicken/geiser/emacs.scm | 311 +++++++++++++++++++++++-------------------------
 1 file changed, 152 insertions(+), 159 deletions(-)

commit 5b2bd49f2c9bb7cea8c63485e40d267ea27bace0
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Oct 3 17:05:01 2015 +0300

    Add missing highlighting for 'syntax-case'

 elisp/geiser-syntax.el | 1 +
 1 file changed, 1 insertion(+)

commit f65b3b1df4f7e6f6e281272ac61262444e59979e
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Oct 3 16:45:43 2015 +0300

    Add more highlighting/indentation for Guile

 elisp/geiser-guile.el | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

commit 3cef425f712f16fb4d2352c6e81664c3bda1e231
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Oct 3 16:31:41 2015 +0300

    Add highlighting/indentation for tests
    
    API for test suites is defined by SRFI-64.

 elisp/geiser-syntax.el | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

commit ece49d5bd0692bc8373a8b024909530d0db67cde
Author: Alex Kost <alezost@gmail.com>
Date:   Sat Oct 3 16:23:51 2015 +0300

    Add highlighting/indentation for exceptions
    
    Exceptions are defined by R6RS, SRFI-18 and SRFI-34.

 elisp/geiser-syntax.el | 3 +++
 1 file changed, 3 insertions(+)

commit dc9be78f1fad878cbc245abce8d331a51ca50fc5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 30 02:40:20 2015 +0200

    Follow suit and complete quoted symbols in all schemes
    
    I kind of dislike completion on symbols, because a quote reads to me as
    'stop evaluating', and a symbol per se has infinite possible
    conversions.  But, on the other hand, not completing has no practical
    advantage, and, moreover, we're already completing symbols inside quoted
    lists (e.g. try M-TAB next to `'(defi`)), so my prejudices are not even
    consistent.  So here we go!

 elisp/geiser-chicken.el | 8 +++++---
 elisp/geiser-guile.el   | 4 ++--
 2 files changed, 7 insertions(+), 5 deletions(-)

commit 04010556fa1c0043472048516a70044c8850d45d
Author: Mario Rodas <marsam@users.noreply.github.com>
Date:   Mon Sep 28 19:48:52 2015 -0500

    Skip expression quote when getting a racket symbol

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7ae1d4b3e6464f0a8b3416f6689c8b44ceb5bc42
Merge: 424553e ccfd1fb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 30 02:27:13 2015 +0200

    Merge remote-tracking branch 'dleslie/master'

commit ccfd1fbab2f246d60b9efb804516db5ab88be6ab
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sun Sep 27 09:19:22 2015 -0700

    Limits search to the line beginning
    
    - Also adds page breaks to geiser-chicken.el

 elisp/geiser-chicken.el | 33 +++++++++++++++++++++------------
 1 file changed, 21 insertions(+), 12 deletions(-)

commit 424553e017718c54e219212b27a32b341ec6bd28
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Sep 27 11:57:48 2015 +0300

    Clean up indentation rules
    
    Move general indentation rules to "geiser-syntax".

 elisp/geiser-chicken.el | 64 ++++++++++++++++++---------------------------------------
 elisp/geiser-guile.el   |  9 +++++++-
 elisp/geiser-syntax.el  | 13 ++++++++----
 3 files changed, 37 insertions(+), 49 deletions(-)

commit 07186d3049ccdf5bb2e50fd4287a52b6e1545626
Author: Alex Kost <alezost@gmail.com>
Date:   Thu Sep 24 22:16:49 2015 +0300

    Add 'geiser-guile--builtin-keywords'

 elisp/geiser-guile.el | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit d1eb6e006cfaa1223482935110b6ac8f80e87e09
Author: Alex Kost <alezost@gmail.com>
Date:   Thu Sep 24 21:28:07 2015 +0300

    Use 'geiser-chicken-extra-keywords'

 elisp/geiser-chicken.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 66f90b13486f3d1e4f986c9746467cf8dcafdaad
Author: Alex Kost <alezost@gmail.com>
Date:   Thu Sep 24 21:19:25 2015 +0300

    Add general font-lock keywords for all implementations
    
    Move general RNRS/SRFI keywords from "geiser-chicken" to "geiser-syntax".

 elisp/geiser-chicken.el | 42 ++++++++++++++++++++++++++++++------------
 elisp/geiser-syntax.el  | 43 ++++++++++++++++++++++++++++++++++---------
 2 files changed, 64 insertions(+), 21 deletions(-)

commit 2b7e3aa00afebe454bea26f54d31847e178c3c33
Author: Alex Kost <alezost@gmail.com>
Date:   Wed Sep 16 21:34:24 2015 +0300

    Add 'geiser-syntax--simple-keywords'
    
    Use this function instead of repeating the same code in each
    implementation.

 elisp/geiser-chicken.el | 2 +-
 elisp/geiser-guile.el   | 4 +---
 elisp/geiser-racket.el  | 5 +----
 elisp/geiser-syntax.el  | 6 ++++++
 4 files changed, 9 insertions(+), 8 deletions(-)

commit 59f140f19b36ce273e3a0f955597469d5192c209
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Sep 25 21:14:21 2015 -0700

    Adds the ability to have sub-word delimiters
    
    Many chickeners use prefixes when importing eggs, which breaks
    completions. This commit adds the ability to define custom prefix
    delimiters, with : and # pre-defined due to their common usage.

 elisp/geiser-chicken.el | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit 9a3d363ee0b2921a5f1479a06deab9bb26b9bee9
Author: Alex Kost <alezost@gmail.com>
Date:   Wed Sep 16 16:29:24 2015 +0300

    Remove Geiser faces from 'faces' custom group

 elisp/geiser-custom.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 8224381c5d7ecdfd2339d94e2aba9a0bfb8d3240
Author: Alex Kost <alezost@gmail.com>
Date:   Wed Sep 16 16:19:36 2015 +0300

    Add 'geiser-repl-buffer-name-function' variable

 elisp/geiser-repl.el | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit d075d57edd2f005fe81380541266fcb46352401c
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sun Sep 13 09:49:43 2015 -0700

    Sorted and line-split crunch symbols.

 scheme/chicken/geiser/emacs.scm | 39 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

commit f4447743c3794b154b34ba3e81554ec35563739a
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Sep 11 22:50:52 2015 -0700

    Added missing macros

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6bf9a257077dadf04ba3a900f957fe4aad70fc2c
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Sep 11 22:26:52 2015 -0700

    Adds recognition of the 'crunch' R5RS subset
    
    Crunch is a subset of R5RS that the crunch egg can heavily optimize via
    c++ compilation. This change allows geiser to report to chicken
    programmers whether the function is found within that subset, easing
    development.
    
    Details on the crunch egg can be found at:
    http://wiki.call-cc.org/eggref/4/crunch

 scheme/chicken/geiser/emacs.scm | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 4c06bb5212bcf194fa61ac331a89094834622b67
Author: Alex Kost <alezost@gmail.com>
Date:   Thu Sep 10 10:27:49 2015 +0300

    Update .gitignore

 .gitignore | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

commit db8ab30c7587616edd99cb90bfdfa77fe4e702ac
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 10 04:22:10 2015 +0200

    Speeding up debugger check (addresses #64)
    
    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.

 elisp/geiser-connection.el         | 14 ++++++--------
 scheme/guile/geiser/evaluation.scm |  8 ++------
 2 files changed, 8 insertions(+), 14 deletions(-)

commit 4f31a25509f5d4a93559a3feb751cdfbef0464b5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 10 03:08:34 2015 +0200

    Fix for geiser-connect-local
    
    This one should address #79.  I'm very surprised this ever worked!

 elisp/geiser-repl.el | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

commit 34102210e188716a0047edd7c87fdee652301f2c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 10 02:08:11 2015 +0200

    Moving implementation loading to geiser-repl (#82)
    
    That way we avoid circularities in the load graph, always a good thing.

 elisp/geiser-impl.el | 5 -----
 elisp/geiser-repl.el | 7 ++++++-
 2 files changed, 6 insertions(+), 6 deletions(-)

commit ded125032b9e84d942a818b47383674e60e37a00
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 10 02:06:36 2015 +0200

    Redundant provide in define-geiser-implementation
    
    This is gone now, since we're diligent enough to always end our impl
    definitions with an explicit provide form.  See PR #87 for a bit of
    discussion.

 elisp/geiser-impl.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 86625ae52aae61a7ed836fd9d0c0a955fa151b1e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 9 18:30:36 2015 +0200

    Whitespace

 elisp/geiser.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 24acd9f971afa36a9e9e11a48bcef6c699e497fa
Author: Christoph Egger <christoph@christoph-egger.org>
Date:   Wed Sep 9 17:40:04 2015 +0200

    Autoload geiser-connect-local as well

 elisp/geiser.el | 4 ++++
 1 file changed, 4 insertions(+)

commit 8eb2aafedbb2a65a69a830814da61395cf276c54
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 8 23:51:21 2015 +0200

    Ensuring switch-to-geiser asks for an implementation
    
    Should fix issue #85

 elisp/geiser-repl.el               | 5 +++--
 scheme/guile/geiser/evaluation.scm | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

commit e19dde931f9ec768d142a3f2c7bb4b6779ac4d4a
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Sep 6 21:55:36 2015 +0300

    Add highlighting for geiser-custom--defcustom/defface

 elisp/geiser-custom.el | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 9356155e725ef185a211cf577126aca421a2a708
Author: Alex Kost <alezost@gmail.com>
Date:   Sun Sep 6 18:05:24 2015 +0300

    repl: Add 'save-history' argument to 'geiser-repl--send'

 elisp/geiser-repl.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit bd42523b61ff81dae4bf585fc2fabda4a94d8bd3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 3 04:21:50 2015 +0200

    guile: pretty printing evaluation results (#64)
    
    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.

 scheme/guile/geiser/evaluation.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 66445547c881ed7b6b504c7d6d3e522e2833ab24
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 3 03:15:45 2015 +0200

    Fixes for elpa make target (issue #78)

 Makefile.am | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 42f70b098aaed948de64891165c8cbeebd61b230
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Tue Sep 1 21:13:32 2015 -0700

    Add compiled .so caching to Chicken support
    
    - Now give compile-file a reasonable destination for the output
    - Check for aforementioned output and skip the compile if exists
    - None of the above happens if the system-type is 'windows-nt,
      which may not be a necessary restriction. And, the existing
      geiser-chicken-compile-geiser-p var applies.
    
    Resolves jaor/geiser#73 for non-windows system

 elisp/geiser-chicken.el | 38 +++++++++++++++++++++++---------------
 1 file changed, 23 insertions(+), 15 deletions(-)

commit ef3a1a51cf88ff9a86f79d90c71c70d059f934a7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 31 17:26:07 2015 +0200

    Kill those TABs

 elisp/geiser-chicken.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8c821139d99133a02055e10ed0a070c2beab25cc
Merge: 76d42a9 62c16d8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 31 17:22:18 2015 +0200

    Merge remote-tracking branch 'dleslie/proper-windows-loading'

commit 76d42a938e46847b66fd5bdbb6706c95500798fb
Merge: 280902e b232512
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 31 17:18:31 2015 +0200

    Merge remote-tracking branch 'dleslie/faster-output-handling'

commit 280902e4dbd68e3b74f0d2caa4963aa79e201095
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Aug 29 10:22:16 2015 -0700

    The issue arose with numerics, as well.
    
    This change should fix it for most any input.

 scheme/chicken/geiser/emacs.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 17331d7f58d257107ba8e64a3053bb6edda639f7
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sat Aug 29 10:01:16 2015 -0700

    Fixes an issue where symbol->string was failing
    
    In some instances apropos-information-list returns a string and not a
    list of symbols; this is the case for Chicken's builtins, like C_plus.
    
    IE, the following would fail:
    (geiser-autodoc #f '(+))
    
    This fixes jaor/geiser#72

 scheme/chicken/geiser/emacs.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b232512c4d7bffae7f2ac8302c3136a637910264
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Aug 28 16:47:12 2015 -0700

    Use pretty-print instead of write with Chicken
    
    Emacs chokes on buffers with very long lines. Use of pretty-print
    instead of write causes most incidents of long lines to be avoided by
    use of better formatting.
    
    This fixes jaor/geiser#64 for Chicken, and appears to greatly speed up
    completions in the general case for Chicken.

 scheme/chicken/geiser/emacs.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 62c16d82511bdda7883947ac0b93d8a5dd20d538
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Aug 28 16:43:48 2015 -0700

    Adds necessary parameter to csi for Windows.
    
    -:c is required to make csi behave nicely with Emacs on Windows.
    
    This ought to resolve jaor/geiser#67

 elisp/geiser-chicken.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 334db07445e9594632c7270587c4503ec8713967
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Thu Aug 27 22:25:04 2015 -0700

    Now suppress loading messages
    
    Chicken won't become available to Geiser until it's actually done
    loading. A number of bugs are related to this, including jaor/geiser#68
    but also some quizzically flaky completion behaviour.
    
    The fix is to suppress output to STDOUT until Chicken is ready; output
    to STDERR is not suppressed, so if bad things happen it will still
    appear in the geiser messages buffer.
    
    This may fix jaor/geiser#68

 elisp/geiser-chicken.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 0f66c250245af1348a3ee5a698c69ec4245e2194
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 14 21:44:46 2015 +0200

    Don't try to turn on geiser-mode in non-scheme buffers
    
    xscheme defines its own scheme-interaction-mode that, quite rudely if
    you ask me, calls not only its hooks, but also scheme-mode's.  Among
    them, turn-on-geiser-mode, causing havoc to users of xscheme's
    run-scheme function.
    
    We, ahem, fix this problem by checking that we're actually in
    scheme-mode when our hook is called.
    
    Thanks to Federico Beffa for his reports.

 elisp/geiser-mode.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit bfb4a8fce5828d15641164b475b830031c6d3335
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Aug 14 08:27:05 2015 -0700

    Modifies geiser--cut-version regex
    
    Minor and Patch versions are now optional.

 elisp/geiser-base.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bfbaaf707f82027e05ea4cfee5d31f2f8eb64690
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Fri Aug 14 08:18:59 2015 -0700

    Closes jaor/geiser#65
    
    geiser--cut-version only supports single-digit minor versions.
    - Improves the regex to support multiple-digit minor versions.
    
    Contributed by @kovrik

 elisp/geiser-base.el | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

commit 7866c31f267d0ecdf94ed90d2724fed20dc149dc
Author: Mario Domenech Goulart <mario.goulart@gmail.com>
Date:   Tue Jun 30 21:56:42 2015 -0300

    geiser-chicken.el: add indentation rule for `with-output-to-pipe'
    
    Signed-off-by: Mario Domenech Goulart <mario.goulart@gmail.com>

 elisp/geiser-chicken.el | 1 +
 1 file changed, 1 insertion(+)

commit 7b049cf784bfc06bd90c3ad8b15e2a0304fb55db
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Sun May 17 17:14:53 2015 -0700

    Various improvements
    - Can now optionally compile Geiser components for enormous speed
    improvements; enabled by default
    - Apropos was returning many duplicates, which was causing slowdowns;
    duplicates are now filtered
    - Now check for #<unspecified> results and return something
    - Fixed a typo in a comment
    - Fixed a typo in calling string-length

 elisp/geiser-chicken.el         | 15 ++++++++++++---
 scheme/chicken/geiser/emacs.scm | 26 ++++++++++++++++----------
 2 files changed, 28 insertions(+), 13 deletions(-)

commit 62ba8d319880e824dd17bfccb480483aa577109c
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Wed May 6 18:25:49 2015 -0700

    Compile instead of Load, should speed up.

 elisp/geiser-chicken.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 666a28f1ff0914916b7a46bc30846c629235a5af
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 12 03:18:47 2015 +0100

    Fix for RET with point at the beginning of line after M-p

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit b695e11602abf10b9a4b1cf8b234f87ee1e915f2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 4 00:09:45 2015 +0100

    Using font-lock-variable-name-face in lieu of bold for autodoc
    
    For some X faces, a bold string in the modeline causes emacs to widen it
    to two lines, which is kind of annoying.  The default value of
    font-lock-variable-name-face on color/X displays doesn't include any
    boldness, and will probably improve the default experience of new users.
    Thanks to Mario Domenech Goulart for noticing this and the previous one!

 elisp/geiser-autodoc.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit f80f48ac7c00b4d0539c9a8f94e8f047482f930a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 3 23:46:46 2015 +0100

    Bogus mention to geiser-impl-installed-implementations removed
    
    It should have been geiser-active-implementations since ages ago.

 README | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f4a6025416ee5544d1c1ecc4389829d9f3ae8e40
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 23:39:38 2015 +0100

    Oops: missing date

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fbd43f27d26cb0c40d2a2d6ede7752575e453e13
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 06:38:54 2015 +0100

    Preparing 0.7

 configure.ac    | 4 ++--
 doc/geiser.texi | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 3dd68414304fede65cb3f0c7951d813bb7b0f792
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 04:14:49 2015 +0100

    Documentation updates and nits for Freija
    
    Preparing the release of 0.7, which will feature support for Chicken
    thanks to Dan and Freija!

 AUTHORS                         |   5 +-
 NEWS                            |  10 +++-
 README                          |  13 +++--
 README.elpa                     |   2 +-
 THANKS                          |   4 ++
 doc/install.texi                |  14 +++++-
 doc/intro.texi                  |  14 +++---
 doc/macros.texi                 |  12 +++--
 doc/repl.texi                   |  55 +++++++++++----------
 doc/thanks.texi                 |   4 ++
 elisp/geiser-base.el            |   4 +-
 elisp/geiser-chicken.el         |  18 +++----
 elisp/geiser-impl.el            |   2 +-
 elisp/geiser.el                 |   2 +-
 scheme/chicken/geiser/emacs.scm | 129 +++++++++++++++++++++++++-----------------------
 15 files changed, 169 insertions(+), 119 deletions(-)

commit 383585e44e56be0e690ad96895f73abf8454d3be
Author: Dan Leslie <dan@ironoxide.ca>
Date:   Thu Nov 20 17:36:50 2014 -0800

    Initial Chicken support

 AUTHORS                         |   1 +
 INSTALL                         |  10 +
 Makefile.am                     |   3 +
 README                          |   4 +
 README.elpa                     |  12 +
 elisp/Makefile.am               |   1 +
 elisp/geiser-chicken.el         | 295 +++++++++++++++++++++
 elisp/geiser-impl.el            |   2 +-
 elisp/geiser.el                 |  12 +
 scheme/Makefile.am              |   3 +-
 scheme/chicken/geiser/emacs.scm | 665 ++++++++++++++++++++++++++++++++++++++++++++++++
 11 files changed, 1006 insertions(+), 2 deletions(-)
 create mode 100644 elisp/geiser-chicken.el
 create mode 100644 scheme/chicken/geiser/emacs.scm

commit ebbb1f69de76d8dac705ef3b977b1598572b87f7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 19 03:34:25 2015 +0100

    NEWS update

 NEWS | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 7b9383db986ee9ed9ab5287af64440ae1f94dfd7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 19 02:46:00 2015 +0100

    Not cleaning the image cache before displaying images
    
    Image cache cleaning was being performed during comint output filtering
    and, since that can happen in batches, if the total output had more
    images than the maximum cache size, some of them would be gone (in fact
    it was even worse: we were cleaning the cache after each image display).
    
    Now we just perform cache maintenance before sending the input, and
    avoid paying a price for non-rackets by making the cache dir setting
    implementation-specific.

 elisp/geiser-image.el  | 38 +++++++++++++++++++-------------------
 elisp/geiser-racket.el | 10 ++++++++--
 elisp/geiser-repl.el   |  3 ++-
 3 files changed, 29 insertions(+), 22 deletions(-)

commit 27b7eacc9c062328d189337e02c2229b4be3e3c7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Dec 31 20:18:19 2014 +0100

    Racket: displaying graphics in structured objects
    
    By hooking the pretty-printer, as discovered by Greg in issue #49.  To
    attain nirvana, we would still need (display (list graph)) to work...

 scheme/racket/geiser/images.rkt | 15 ++++++++++++++-
 scheme/racket/geiser/user.rkt   |  8 ++++++--
 2 files changed, 20 insertions(+), 3 deletions(-)

commit 0dbd605e631beea9b46f526deda2a7d05928c49f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 29 02:46:12 2014 +0100

    Racket: show images with print, write and display
    
    Up to now, we were only displaying images when printed as values by the
    REPL, but not when image values were explicitly print-ed, write-d or
    display-ed.  This patch solves that problem by installing (semi)
    appropriate port-{print,write,display}-handler.  This is still and
    incomplete solution in that those handlers (as well as the already
    installed current-print-handler) don't recurse over a value's structure
    and won't produce images embedded in other data structures, as discussed
    in issue #49.

 scheme/racket/geiser/images.rkt | 11 +++++++++--
 scheme/racket/geiser/user.rkt   | 13 ++++++++++++-
 2 files changed, 21 insertions(+), 3 deletions(-)

commit a1c1f48872801ed47ec056fffc585011a068907b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 1 03:51:05 2014 +0100

    New MELPA URLs

 doc/install.texi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit fe869d21f9a2a5c81b0740aaa809205a019faf3f
Author: Henry Till <henrytill@gmail.com>
Date:   Mon Oct 6 14:47:28 2014 -0400

    remove geiser-mode--maybe-activate from scheme-mode-hook on geiser-unload

 elisp/geiser-reload.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 1d1e209999ae7b3d1a5016fdf00ec7206965d1b2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 23 03:25:51 2014 +0200

    A NEWS update
    
    Since we have so few, let's not wait to add just one more!

 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

commit 8658dc2e8dd89eb21cd035f7a16af10285f99566
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 23 03:20:50 2014 +0200

    A better name for geiser-doc-symbol--fill-current-symbol
    
    Which moreover complies with the unwritten naming conventions we use:
    geiser-doc--render-docstring.

 elisp/geiser-company.el | 4 ++--
 elisp/geiser-doc.el     | 7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 354b09ca1d7e1f830bbe3875f1a0a7fc24b14b4d
Author: Profpatsch <mail@profpatsch.de>
Date:   Mon Sep 15 16:49:47 2014 +0200

    company: implement --doc-buffer

 elisp/geiser-company.el | 12 +++++++++++-
 elisp/geiser-doc.el     | 27 +++++++++++++++------------
 2 files changed, 26 insertions(+), 13 deletions(-)

commit 270e94ec59594a9ca43d09e4e841528e030129ff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 30 20:46:28 2014 +0200

    I meant Marmalade, of course. MELPA stable seems better.

 doc/install.texi | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit e396c98f49448afe1584fb2be3e0a648acba3598
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 10 01:45:29 2014 +0200

    MELPA is hopeless (at least for the time being)

 doc/install.texi | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

commit 637980cc26cb47c34ef6e35d0d2fde51aafe7fbb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 10 00:57:37 2014 +0200

    NEWS for 0.6

 NEWS            | 2 +-
 configure.ac    | 4 ++--
 doc/macros.texi | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

commit 7cf34c0c92cac3039849b8be40b468d0c52d2472
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 5 06:14:44 2014 +0200

    Possible fix for scanning problem
    
    Apparently, the nesting level returned by emacs's syntax parser can be
    negative (presumably when it gets confused), and we were not avoiding
    calling backward-up-list when that happened.
    
    Could or could not address issue #41...

 elisp/geiser-guile.el  | 4 +---
 elisp/geiser-racket.el | 4 +---
 elisp/geiser-syntax.el | 9 ++++++---
 3 files changed, 8 insertions(+), 9 deletions(-)

commit f7c97ae42913e22df4532aa820a07751a5e8c71e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 3 03:10:23 2014 +0200

    Guile: font lock for all components of module names

 elisp/geiser-guile.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit f55181bc0f231ca54ad40267aa2f75e4e5cf4055
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 1 01:17:32 2014 +0200

    A bit of NEWS

 NEWS | 5 +++++
 1 file changed, 5 insertions(+)

commit c961e6097c896b952bf6ccbb8ebbb794c8d50294
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 31 23:52:26 2014 +0200

    Almost redundant REPL command to interrupt evaluation
    
    Works almost identically to the stock C-c C-c, with just marginally
    better output aaand being well behaved when interrupting infinitely
    looping functions such as (define (f) (newline) (let loop () (loop))) --
    cf. issue #29 on github.
    
    We like it so much that it replaces the old one.

 doc/cheat.texi       | 3 +++
 elisp/geiser-repl.el | 8 ++++++++
 2 files changed, 11 insertions(+)

commit 9ff03facb2ea1e0a6b320f603dfd7e0e787d9593
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 31 20:54:22 2014 +0200

    Finer control of debugging window popups
    
    It's now possible to control whether we jump to the debug window on
    evaluation errors (geiser-debug-jump-to-debug-p) and whether we show it
    all (geiser-debug-show-debug-p).

 NEWS                   |  5 +++++
 doc/parens.texi        |  6 ++++++
 elisp/geiser-debug.el  | 33 ++++++++++++++++++++++++++++-----
 elisp/geiser-racket.el |  7 ++++---
 4 files changed, 43 insertions(+), 8 deletions(-)

commit 30c3c30774fc16e5ec342bc5eeca21c277a56107
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 31 18:54:11 2014 +0200

    Fix for apparently stolen link to texinfo

 doc/geiser.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 586d552350c04f4025ce99d2600bf89496db6e31
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 31 05:37:09 2014 +0200

    Making makeinfo html-happy
    
    Fixes for warnings issued by makeinfo 5.x (when using some of our
    macros: the guy is touchy regarding @ifhtml and new lines) that were
    preventing the install-html make target to work (for people that want
    local html by texinfo as opposed to the (supposedly fancier)
    texi2html-generated version we use for the web).

 doc/parens.texi | 18 ++++++++++++------
 doc/repl.texi   | 13 ++++++++-----
 2 files changed, 20 insertions(+), 11 deletions(-)

commit 5020b91e90520a9e5c0c725123247535dfb60a4f
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Wed Mar 26 03:22:12 2014 -0300

    Indent Guile's `with-mutex'
    
    Follow the convention for `with-' procedures.

 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 13f2aa64d2bd61f1338073d913b354d88ae3e4c2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 7 13:25:02 2014 +0100

    Fontify when too (thanks to Diogo)

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit aefaae3c8af9d31c12411073dba7749f194bd749
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Fri Feb 28 18:03:51 2014 -0300

    Disable error in `define-syntax-rule' font lock
    
    This allows partially matched `define-syntax-rule' expressions and
    avoids the termination of search-based fontification, which affects
    other expressions inside the buffer, in the case of a missing
    subexpression.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c74baab7509c68e0db09870954a8de3a3e7727aa
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Fri Feb 28 17:43:35 2014 -0300

    Highlight `define-once'
    
    Guile's `define-once' allows defining a variable only once, but its
    syntax is different from `define', so its highlight is different.

 elisp/geiser-guile.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit d903e2c8df9dc7b02e1e89d135b961810914005d
Author: Ludovic Courtès <ludo@gnu.org>
Date:   Tue Feb 18 17:25:44 2014 +0100

    Add 'geiser-connect-local' to connect over Unix-domain socket.

 elisp/geiser-repl.el | 38 ++++++++++++++++++++++++++++++--------
 1 file changed, 30 insertions(+), 8 deletions(-)

commit e279622a64a42aedfcc388ff4df45319f76f794d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 25 00:48:28 2014 +0100

    Using font-lock-function-name-face for define-syntax-rule
    
    The name defined It's more like a function in a define than a variable,
    since it can take arguments.

 elisp/geiser-syntax.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5fddde9ef9dc53fd3cc8aacda4f0ed5a9c3a2e52
Author: Diogo F. S. Ramos <dfsr@riseup.net>
Date:   Mon Feb 24 17:46:50 2014 -0300

    Font lock `define-syntax-rule' like `define' procedures
    
    `define-syntax-rule' is similar enough to procedure definitions that
    it should be highlight as a slightly different version of one.
    
    The faces were chosen to keep the same scheme used by `define-macro'.
    
    `define-syntax-rule' was removed from Racket's extra keywords as there
    is no need to special case it.

 elisp/geiser-racket.el | 3 +--
 elisp/geiser-syntax.el | 8 ++++++--
 2 files changed, 7 insertions(+), 4 deletions(-)

commit c00e7678d97beb0107740e408263931b88449886
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 18 05:41:04 2014 +0100

    Racket: no more re-enter notifications (issue #25)

 scheme/racket/geiser/enter.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1839c4042013ae2a4002e228ca2ee8bf295190d3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 18 05:10:08 2014 +0100

    Racket: fix for recompilation of typed/racket modules
    
    When using our current-load/used-compiled function, we were compiling
    the syntax of a module using compile, which seems to not honour
    
    With luck, this should address bug #14 for real.

 scheme/racket/geiser/enter.rkt | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit f9b2ed86077a79718b083e49f752cf01457e1459
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 10 06:20:05 2014 +0100

    Racket: better behaviour of geiser-eval-buffer
    
    For buffers containing a #lang directive, geiser-eval-buffer was simply
    broken: one cannot send the whole region wrapped in a `begin' in that
    case.
    
    We try now to send the region below, although a real solution would
    imply using #%module-begin as the wrapper, in order to be robust for
    languages that define their own version of the macro (such as TR).
    
    But people should use C-c C-a or C-c C-k and leave this silly function
    alone instead.

 NEWS                   |  3 +++
 elisp/geiser-mode.el   | 21 +++++++++------------
 elisp/geiser-racket.el | 10 +++++++---
 3 files changed, 19 insertions(+), 15 deletions(-)

commit 826a054761d0f12f243883a001b2392279580a7f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jan 9 00:48:57 2014 +0100

    Racket: fix for evaluations inside typed/racket modules
    
    When evaluating (re)definitions in a typed module, it's necessary that
    the form evaluated is wrapped with #%top-interaction, so that typed
    racket's redefinition of that macro enters into play and the system
    records the type information of the new value.
    
    Many thanks to Sam Tobin-Hochstadt for the tip, and for his encouraging
    words.

 NEWS                          | 7 +++++++
 scheme/racket/geiser/eval.rkt | 7 ++++---
 scheme/racket/geiser/user.rkt | 4 ++--
 3 files changed, 13 insertions(+), 5 deletions(-)

commit 4bb12c208bab5740fdfa0f77b5c2b279fb941b99
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jan 9 00:47:30 2014 +0100

    Racket: duplicate version check removed
    
    We used to check for a good racket version during its start-up, but
    these days we already have an independent version check before that.

 scheme/racket/geiser/startup.rkt | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

commit c676e0f23f4fd039e512056ee3cf2f268eef71f7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 9 03:08:31 2013 +0100

    Version 0.5

 NEWS            | 2 +-
 doc/macros.texi | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 9b1244055e355d057ba2cd22da1412139963b68a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 30 05:15:33 2013 +0200

    Learning to write

 doc/install.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit bb45bdb6e640f36ac3265db6cfc5aa9a78cf00cf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 30 04:39:35 2013 +0200

    Mentioning Xiao Hanyu's ac-geiser package in the docs

 doc/install.texi | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 0529e5a684e274eb27277329eb36d5b44f0a75d2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 26 19:08:19 2013 +0200

    Checking for versions before creating the REPL buffer
    
    ... so that we don't end up with a blank, useless buffer around.

 elisp/geiser-repl.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit bf3f1750579e88c4e636855f912a2138fbd0f632
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 25 05:15:13 2013 +0200

    Credit where credit is due

 NEWS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2cb40f5a1f0115a995daa176208f76b674dd523e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 25 05:10:00 2013 +0200

    Scheme version checks
    
    And, if you happen to be launching it all the time, a way of skipping
    them via a customizable variable.
    
    Should address issue #15.

 NEWS                   |  3 ++-
 doc/repl.texi          | 23 +++++++++++++++++------
 elisp/geiser-base.el   | 11 ++++++++++-
 elisp/geiser-guile.el  |  7 +++++++
 elisp/geiser-racket.el |  9 ++++++++-
 elisp/geiser-repl.el   | 25 +++++++++++++++++++++++++
 6 files changed, 69 insertions(+), 9 deletions(-)

commit 438e26d9e1759b85785637efc0b64e818e289e57
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 19 18:24:00 2013 +0200

    News about MELPA support

 NEWS             |  6 +++++-
 doc/install.texi | 10 +++++-----
 2 files changed, 10 insertions(+), 6 deletions(-)

commit b6f8a04bfd53cd4fd77533a1f7a1d1db028ed8fd
Author: Steve Purcell <steve@sanityinc.com>
Date:   Thu Sep 19 08:29:16 2013 +0100

    Fix file headers and footer for ELPA compatibility
    
    This will allow `package-buffer-info` to parse the description out of the file.

 elisp/geiser.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 832cacddb963a3ae0e11acf007bd16164b5f8121
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 19 03:24:55 2013 +0200

    Missing autoload cookies for MELPA
    
    Everything in geiser.el needs one, so that the generated
    geiser-autoloads.el initializes variables and the like properly
    automatically.

 elisp/geiser.el | 3 +++
 1 file changed, 3 insertions(+)

commit 0238bdb00116c7fce43dd982ba69c1d6ef9ebc42
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 19 02:37:06 2013 +0200

    Paving the way to MELPA (and simpler ELPA generation)
    
    Following the discussion in GitHub, i'm adding an alternative scheme
    path to geiser.el as well as ##autoload cookies.  As a first benefit,
    this simplifies a bit the elpa target, after playing a similar path
    trick in bin/geiser-racket.sh.
    
    Things should be almost ready for creating a MELPA recipe.

 Makefile.am          | 20 ++++++++------------
 bin/geiser-racket.sh |  5 ++++-
 elisp/geiser.el      | 26 ++++++++++++++++++++++++--
 3 files changed, 36 insertions(+), 15 deletions(-)

commit 217d2b5948b23a87efa3c617fdf213127e5acc15
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 19 02:19:45 2013 +0200

    Fix: not using mapcar for effect

 elisp/geiser-guile.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 4fdfd9d971888bba41bc46919792a28c478573de
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 17 19:06:12 2013 +0200

    Docs: it's package-install, not install-package

 doc/install.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 393305d2fcf612f4e5f99383f680f819b458c326
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 13 20:36:56 2013 +0200

    Guile: augmenting %load-compiled-path too
    
    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!

 elisp/geiser-guile.el              | 13 ++++++++-----
 scheme/guile/geiser/evaluation.scm | 15 +++++++++++----
 2 files changed, 19 insertions(+), 9 deletions(-)

commit ba42cac06db062d5392342930d3d175c1d3cf763
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 26 01:43:09 2013 +0200

    Syntax error fixed
    
    Too much clojure latetly!!

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d9109af2f6737cc4af0beb19bc597134ce9b416c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 26 01:36:58 2013 +0200

    Ensuring that comint-process-echoes is nil in REPL
    
    This variable makes comint wait for the underlying process to echo its
    input, something our schemes won't do.  If anyone sets the variable
    globally for what can only be perverse reasons, we just would just hung.
    Not anymore.

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit 3a1dbf4e37f44e853cb649805a1f8777d0ba7501
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 25 07:12:07 2013 +0200

    Let's make it *any* submodule
    
    So the new functions are named geiser-racket-*-submodules, and by
    default all submodule forms are hidden.
    
    Now that we have the helpers in geiser-edit, we could have a generic
    command in geiser-mode to change the visibility of form at point.

 NEWS                   |  4 ++--
 elisp/geiser-edit.el   |  6 +++++-
 elisp/geiser-racket.el | 50 ++++++++++++++++++++++++++++++++------------------
 3 files changed, 39 insertions(+), 21 deletions(-)

commit 79d3a9a2f332f71711734ee5dd1b7fb2c45ca797
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 25 06:22:05 2013 +0200

    Racket: new commands to show and hide test submodules
    
    The new commands, being racket-specific, are called
    geiser-racket-{show,hide,toggle}-tests, and have no default binding in
    geiser-mode (since they don't have any meaning in Guile).
    
    The implementation is based on more generic functions in geiser-edit
    that allow hiding of any top-level form, given its name, so we will
    probably find new forms to hide in the future.
    
    Hiding is limited to top-level forms, which i think is fine for the only
    use case we have in mind right now.

 NEWS                   |  2 ++
 elisp/geiser-edit.el   | 28 ++++++++++++++++++++++++++++
 elisp/geiser-racket.el | 21 +++++++++++++++++++++
 3 files changed, 51 insertions(+)

commit ceb418aff619db01c5ed1201abff75df41a35102
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 12 00:31:12 2013 +0200

    Newish emacsen don't have comint-last-prompt-overlay
    
    ... so we have to check if it's defined and, in its defect, use the
    new shiny comint-last-prompt.  A bit of refactoring resulted.

 elisp/geiser-repl.el | 37 ++++++++++++++++++++-----------------
 1 file changed, 20 insertions(+), 17 deletions(-)

commit 7fdc0f5aa049188043387608e92d4f3958c6cdeb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 12 00:29:47 2013 +0200

    A file not ending in newline, oh the horror

 Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 04f49a44dd0ed8a78578f7b1253404a9a8734428
Author: Diogo F. S. Ramos <diogofsr@gmail.com>
Date:   Mon Aug 5 14:39:51 2013 -0300

    Add `dir' to EXTRA_DIST
    
    So the generated tarball from `make dist' will have `dir' inside.

 doc/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit ecbd4c99c2bee884b7ac39d320342078b0a4f804
Author: Diogo F. S. Ramos <diogofsr@gmail.com>
Date:   Mon Aug 5 11:43:41 2013 -0300

    Add `dir' file to list the info manual
    
    If a user doesn't want to install geiser, it's possible to run it in
    place by loading `elisp/geiser.el' directly.
    
    It's also possible to read the info manual directly but it's
    inconvenient to not have it listed when hitting C-h i inside Emacs.
    
    To list such manual, it's necessary to tell info where to look for it.
    One way of doing it is adding the directory to the variable
    `Info-additional-directory-list'.  But, for this to work, there's need
    to be a `dir' file listing the info manual.

 doc/dir | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 doc/dir

commit 25a81dc10945622a0a52e54ea0b818aa1deae326
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 29 02:34:22 2013 +0200

    Avoiding a segfault due to out of bounds stack size
    
    The parser in geiser-syntax is (tail, but elisp doesn't care)
    recursive, and we are setting max-lisp-eval-depth to some, ahem,
    heuristic value before starting a read.  For long strings, such as
    that returned by the list of identifiers exported by the racket
    module, the heuristic was bad enough to produce a value making Emacs
    to blow away.
    
    This is just a palliative.  The real solution is turn the recursion in
    geiser-syntax--read into an explicit iteration.

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 20a68166d0c05a18932bc784da5fe060fd3f32ae
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jul 2 21:15:42 2013 +0200

    Real solution for the non-ascii-history problem
    
    We were using a history entry separator including \0 that wasn't
    writeable as an utf-8 file.  Changing the separator to \n}{\n allows
    using UTF-8 characters in the REPL which are correctly read back.

 NEWS                 | 2 ++
 elisp/geiser-repl.el | 6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 82e47962fc16c037b8b7c6864dfee3a0eedaf183
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jul 2 18:15:02 2013 +0200

    Debug code removed

 scheme/racket/geiser/enter.rkt | 1 -
 1 file changed, 1 deletion(-)

commit 2a1e09d3d79e0daeee3f873487d7c0fce130a5fe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 21:39:10 2013 +0200

    A couple of byte-compilation warnings gone

 elisp/geiser-load.el.in | 1 +
 elisp/geiser-popup.el   | 4 ++--
 elisp/geiser-repl.el    | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

commit 1399ac696c436d4e97c2c6dbfdebd9244c5dca94
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 20:41:43 2013 +0200

    Using session instead of session.el for you bytecompilers

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b63597f22f8164da9dc7c5064e56411c877388c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 20:17:23 2013 +0200

    Another not entirely satisfactory experiment with raw-text

 elisp/geiser-repl.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c31f439314626cc314cab88117a950271c4df4b5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 19:56:42 2013 +0200

    Experiment setting history file coding system

 elisp/geiser-repl.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit bee2bd29087b21087caca10104d5251c7ed92800
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 15:41:27 2013 +0200

    NEWS update

 NEWS            | 4 ++++
 configure.ac    | 2 +-
 doc/macros.texi | 8 ++++----
 3 files changed, 9 insertions(+), 5 deletions(-)

commit d7d502df035d05b82bed3bf9d1ada2aafaaa0fcd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 1 15:18:14 2013 +0200

    Preventing session.el messing up with geiser-doc--history
    
    Session seems to be recovering the value of geiser-doc--history
    badly (see issue #7 for @achitu's discoveries), and since it is, in
    fact, not a good idea to save it anyway, we've added an eval-on-load
    deregistering the variable from session's list.

 elisp/geiser-doc.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 096dfb84f6ca774c7f241b9ea446b510bbbccaf5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 27 19:23:35 2013 +0200

    Racket: not loading errortrace by default
    
    The new submodules and errortrace interact badly, for what i've seen.
    In particular, even with the submodule[+*] loading correctly, its
    namespace doesn't have all identifiers bound, and new ones seem to
    appear in the bindings lists (things like a.1 or b.2, when a and b are
    the actual identifiers defined inside the module).
    
    Since moreover someone mentioned in the devel ML that errortrace is in
    general terms buggy, i guess we can leave without it for the time
    being.

 scheme/racket/geiser/enter.rkt   |  5 +----
 scheme/racket/geiser/startup.rkt |  2 +-
 scheme/racket/geiser/user.rkt    | 13 ++++++-------
 3 files changed, 8 insertions(+), 12 deletions(-)

commit bc3d5897f789de9afdf5d4f7aab48df8566bebf9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 27 19:18:26 2013 +0200

    White space, really

 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 189b10e18b98d40b0f43cd07277a81cc09f10dae
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 20 21:55:46 2013 +0200

    Another indentation rule: match-let-values

 elisp/geiser-racket.el | 1 +
 1 file changed, 1 insertion(+)

commit 05bded801b537d80ba52572d5a2c2fc1ad773447
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 15 19:06:58 2013 +0200

    Missing require cl for case

 elisp/geiser-company.el | 2 ++
 elisp/geiser-guile.el   | 2 ++
 elisp/geiser-racket.el  | 2 ++
 3 files changed, 6 insertions(+)

commit 0051c9ee4eefe5f8a9ab56d26f96f57b9f2870ef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 11 15:51:05 2013 +0200

    racket: ,cd accepting also non-quoted paths
    
    just because we can

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5e1b969e20004f49f1174346a612269c56d0d785
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 11 15:29:25 2013 +0200

    racket: struggling with submodules
    
    Submodule (re)loading is not without pecularities.  In particular,
    module[*+] submodules are not visited the first time one enters its
    parent, but once you load them once, they're revisited every time we
    load the parent afterwards--racket's native enter! exhibits the same
    behaviour, so i'm guessing we'll have to live with that.
    
    There is however a glitch in that submodules can only be reloaded then
    by loading the parent, so we need to confirm that this is expected
    behaviour and, if it is, automating the parent's load when the
    submodule's is requested.
    
    On the other hand, entering a module[*+] is not working in Geiser yet,
    and it does in plain racket, so this one is our fault.  Working on it.

 scheme/racket/geiser/enter.rkt   | 56 +++++++++++++++++++++++++++---------------------
 scheme/racket/geiser/modules.rkt |  2 +-
 scheme/racket/geiser/user.rkt    |  4 ++--
 3 files changed, 35 insertions(+), 27 deletions(-)

commit 7b1a1d046059eb2ce68ea02706a0e7494c39684f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 10 00:06:55 2013 +0200

    racket: new ,geiser-load command in REPL
    
    ... and used also internally for C-c C-k, although it doesn't yet work
    as well as i wanted when it comes to load modules.  The reason is
    probably in geiser/enter, where we don't record modification times per
    submodule but per path, which is not correct in the presence of submodules.

 elisp/geiser-racket.el        | 68 +++++++++++++++++++++++++--------------------------
 elisp/geiser-syntax.el        |  3 +++
 scheme/racket/geiser/eval.rkt |  8 +++---
 scheme/racket/geiser/user.rkt | 34 ++++++++++++++++++--------
 4 files changed, 65 insertions(+), 48 deletions(-)

commit bba166c3ccb136fa8321ad9acc9cfd48a5fed357
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 10 00:04:30 2013 +0200

    Nits

 scheme/racket/geiser/enter.rkt | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit e742a202a8cdc1cb4712425e69d9335098fb1693
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 9 00:48:42 2013 +0200

    racket: C-u C-c C-z on a submodule enters it

 scheme/racket/geiser/user.rkt | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

commit f7d7ec626066ca067db0e3bb9cc42f45ab1c5727
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 9 00:48:13 2013 +0200

    racket: module* and module+ denote submodules too
    
    Recognizing those forms in the elisp module getter.

 elisp/geiser-racket.el | 32 ++++++++++++++++++++------------
 1 file changed, 20 insertions(+), 12 deletions(-)

commit 2c72e754cc0f988056c0cae2c7a35fedccf02c2b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 9 00:47:28 2013 +0200

    racket: handling correctly submodules in load handler during ,enter
    
    That is, complying to the submodule loading protocol (cf. racket's own
    enter!).

 scheme/racket/geiser/enter.rkt | 39 ++++++++++++++++++++++++---------------
 1 file changed, 24 insertions(+), 15 deletions(-)

commit c548baba9c4c708f697dfde9c33c2fb92f707e93
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 9 00:28:47 2013 +0200

    racket: indentation for module*

 elisp/geiser-racket.el | 1 +
 1 file changed, 1 insertion(+)

commit 2dfa425356fabe2289598212b32359dc41dfb64c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 8 23:15:15 2013 +0200

    racket: ,gcd -> ,pwd
    
    And we display it (the current path, settable via ,cd) as a string.
    This was, i'm sure, a secret command nobody is using!

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1551885d929463723748b81e9bfab07bde0d1f47
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 8 16:01:01 2013 +0200

    racket: ,enter submodules
    
    It is now possible to ,enter racket submodules.  This is only the
    first part of the story, because evalations should take place in the
    submodule, not in its top level module, as it happens now.

 scheme/racket/geiser/modules.rkt | 37 +++++++++++++++++++++----------------
 scheme/racket/geiser/user.rkt    | 18 ++++++++++++------
 2 files changed, 33 insertions(+), 22 deletions(-)

commit bb38fa9c5cae5095a629c6cbb4ea570d47adeb62
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 6 23:48:28 2013 +0200

    For crazy guys that use (define/match [foo bar] ...)
    
    Racket is happy with that, so who are we to disagree?

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9d170c4831a2488ba0fbdc57dddab3143f44357e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 6 23:41:46 2013 +0200

    Racket: correct font-lock for define/match, again
    
    We weren't considering the obvious: (define/match (foo bar) ...)

 NEWS                   | 1 +
 elisp/geiser-racket.el | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit 54ca5d09076ea1ad29076075abe30a32594e8c5f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 6 03:55:42 2013 +0200

    Racket: correct font lock for define/match
    
    We could probably generalize to more function definition forms, but
    this is a start.

 elisp/geiser-racket.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 06cb8552677d5b315c2b75f84944265f7feb570d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 4 14:59:24 2013 +0200

    Ludovic made it also to AUTHORS and NEWS

 AUTHORS | 1 +
 NEWS    | 5 +++++
 2 files changed, 6 insertions(+)

commit 99e1cb68577896b2d1afcc9b6ab52e5c6a3a523f
Author: Ludovic Courtès <ludo@gnu.org>
Date:   Tue Jun 4 14:42:57 2013 +0200

    Guile: Fix subr argument name retrieval for Guile >= 2.0.9.

 scheme/guile/geiser/doc.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 7613969054120384af99e9d6115cd4667b65c553
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue May 21 18:54:58 2013 +0200

    Authors and news updated to include Darren

 AUTHORS | 1 +
 NEWS    | 2 ++
 2 files changed, 3 insertions(+)

commit 20e0501f9cc82c6938e465303a29b69ef1636628
Author: Darren Hoo <darren.hoo@gmail.com>
Date:   Tue May 21 15:01:11 2013 +0800

    yank input if point is over history input

 elisp/geiser-repl.el | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

commit 4d8158a0ea1e3019935149431ff93385e72af576
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue May 14 01:36:38 2013 +0200

    Nits in geiser-racket.sh

 bin/geiser-racket.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 508f06277de0405e48ddc1e62dde214517b5b549
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue May 14 01:36:16 2013 +0200

    Documentation updates
    
    A nit about the new commands docs, and thanks to Nick Parker.

 AUTHORS         | 1 +
 NEWS            | 7 +++++++
 doc/parens.texi | 7 +++----
 3 files changed, 11 insertions(+), 4 deletions(-)

commit 48b70f4bcee81de0d2a61eb2310ed08ab4e306f3
Author: Nick Parker <nparker@zetetic.net>
Date:   Mon May 13 13:36:34 2013 -0500

    Add geiser-eval-buffer & geiser-eval-buffer-and-go
    
    These functions are similar to geiser-eval-region and
    geiser-eval-region-and-go, however they allow the user to operate on the
    entire buffer, not requiring the user to narrow to a specific region.
    This also differs slightly from geiser-compile-current-buffer as
    geiser-eval-buffer does not require the contents of the buffer to
    be saved prior to being sent to the REPL.  Documentaion has also been
    updated to include references to the new methods and their keybindings.

 README               |  2 ++
 doc/cheat.texi       |  6 ++++++
 doc/parens.texi      |  4 ++++
 elisp/geiser-mode.el | 25 +++++++++++++++++++++++++
 4 files changed, 37 insertions(+)

commit 168376ebcb164bca88cf487b07361ae8fe0a6a3e
Author: Aleix Conchillo Flaque <aconchillo@gmail.com>
Date:   Wed May 8 22:22:24 2013 -0700

    guile: lambda* indentation

 elisp/geiser-guile.el | 1 +
 1 file changed, 1 insertion(+)

commit bf1134c65c166eea537bc73797ef6f48cb9b4abe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 4 15:07:37 2013 +0200

    Release date for the web

 doc/macros.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c5097cf3a8dc60cab206d2af08223be9793116bf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 3 20:15:00 2013 +0200

    NEWS for 0.4

 NEWS            | 4 ++--
 doc/cheat.texi  | 3 +++
 doc/geiser.texi | 2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

commit 95f0b314ea50737c2b0631932328233f130d8373
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 28 15:16:57 2013 +0200

    Thanks where thanks are due

 THANKS          | 7 +++++++
 doc/thanks.texi | 6 ++++++
 2 files changed, 13 insertions(+)

commit 87faab8c881210d0d782427f504c2ab7611c82d8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 28 15:07:55 2013 +0200

    Issue tracker links pointing to Github's
    
    Almost all contributions have come this way, and it's a hassle having
    two of them.

 doc/thanks.texi | 4 ++--
 doc/web.texi    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 69761d95c7142551efae87ebae1be8afcbe9d176
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 28 15:04:49 2013 +0200

    Mailto link for the witty geiser-users address
    
    ... since i've got reports that it's sometimes annoying not to be able
    to directly click and post.

 doc/thanks.texi | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit bfa5d426c48a075d1386f4feb8d6833ba6ba1670
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 21 02:45:28 2013 +0200

    Fix for Racket compilation error jumping in REPL
    
    The backtraces now display some leading whitespace, which the default
    compilation-mode regexps was making part of the file name.

 elisp/geiser-racket.el | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

commit 8c9313c3976cd8962edc2b5ee95b1168a3e21814
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 21 02:17:58 2013 +0200

    Racket: fixing error backtrace cleansing
    
    i.e., removing again references to geiser's innards

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8b16e095fd38bc3ca0c51b8b97b449f6a8d80e1b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Apr 17 18:14:31 2013 +0200

    Racket: fix for jump to manual for symbols not in the namespace
    
    We had broken using the hint that `help` offers during our recent
    adventures...

 elisp/geiser-racket.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 496efc48adf247cd5d17beb436f71f38a89f9f1d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 16:09:00 2013 +0200

    Remainin reference to company's screencast gone.
    
    Fixes #3 for real

 README | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 311db249e9238358445e36cf8d4c4aff3d363945
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 16:05:22 2013 +0200

    Company mode screencast seems gone for good
    
    And Dmitry is now maintaining it.  Links updated, issue #3 fixed.

 doc/install.texi | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit cd2c241c71a13aedf700d98b5cb2552c29d8afee
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 12:53:53 2013 +0200

    NEWS entry since Diogo confirmed things work again

 NEWS | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8c6eb94980cac77f22d8a972b08a0a2ed4d44b77
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 11:14:13 2013 +0200

    Racket: correct detection of manual lookup failures
    
    Still a tad messy, because we are always forcing a retort-syntax error
    and checking its ouput, but good enough for now.

 elisp/geiser-racket.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit b32cc5ea37430c5d06ba2964ccdc430ce0faad80
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 11:13:02 2013 +0200

    Racket: ensuring the first C-c C-d C-i works
    
    ... by the obvious device of waiting for the thread building the index
    to finish.

 scheme/racket/geiser/autodoc.rkt | 12 ++++++++++++
 scheme/racket/geiser/user.rkt    |  4 ----
 2 files changed, 12 insertions(+), 4 deletions(-)

commit 82f909d80a55f0dcf8639b094351f5e61f3449e6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 10:43:07 2013 +0200

    Racket: fixing help when REPL is in a module
    
    The evaluation of the help form must happen in a good enough
    namespace.

 scheme/racket/geiser/autodoc.rkt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 5aec661ebb415b474b5bc01a8a295fc7c2639f8a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 04:18:19 2013 +0200

    Racket: pre-loading help also in remote REPLs

 scheme/racket/geiser/user.rkt | 1 +
 1 file changed, 1 insertion(+)

commit c00f24907cf87589f4b28885507443d419385502
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 15 04:08:08 2013 +0200

    Racket: better help commands
    
    For some reason that i don't fully understand, evaluating a function
    in the racket/base namespace first thing after loading errortrace
    breaks the help macro (!).  This patches provides a workaround by
    actually invoking help first thing when Geiser starts, with alibi that
    it serves to preload the help index (in a separate thread).
    
    While i was at it, i improved the message printed in the minibuffer
    when no help is found.

 elisp/geiser-racket.el           | 20 ++++++++++----------
 scheme/racket/geiser/autodoc.rkt |  5 ++---
 scheme/racket/geiser/startup.rkt |  4 +---
 scheme/racket/geiser/user.rkt    | 13 +++++++++++--
 4 files changed, 24 insertions(+), 18 deletions(-)

commit 82165389e02b4ff29bade2a2b34903142e3bc73a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 14 03:23:00 2013 +0200

    More good NEWS

 NEWS | 2 ++
 1 file changed, 2 insertions(+)

commit 8966cbbdc5615051bf0def94d7b6f18e4b295de3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 14 03:15:52 2013 +0200

    Disabling company calls while the REPL is working

 elisp/geiser-company.el | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit 3b5397c8dad34f9dfe83c2c44eeece0de9097df3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Apr 13 05:22:20 2013 +0200

    A better solution to the funky filename problem
    
    So, the problem was that our regexp for a Racket prompt didn't take
    into account that filenames could contain white spaces: "@[^ ]*> ".  A
    simple solution was accepting them: "@[^>]+> " won't work because '>'
    is also a valid character in filenames, so we went for "@.*> ".
    
    The drawback is that finding the beginning of the prompt (e.g. in C-a)
    fails when you're writing things like:
    
       racket@foo bar.rkt> (> 2 3)
    
    because here comint believes that the prompt is "racket@foo bar.rkt> (> "
    
    And that could have side-effects elsewhere.  So what i've done is
    simply changing the way white-space is (not) printed in the prompt,
    substituting it by underscores.  That way, whe can go back to the
    initial regexp, comint doesn't get confused, and users can easily
    infer that "@foo_bar.rkt>" is actually referring to their
    "foo bar.rkt" file.

 elisp/geiser-racket.el        | 2 +-
 scheme/racket/geiser/user.rkt | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit d494b97c34386470fa9b7ee7ddcc63c41b8c51ff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Apr 13 00:43:45 2013 +0200

    Another take at the fix (files with >, bleh)

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2124e366e3590e6d01931a9eca098e4a0c3d85ed
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Apr 13 00:22:48 2013 +0200

    Good NEWS

 NEWS | 2 ++
 1 file changed, 2 insertions(+)

commit d59b4b1ffe2892d918ad9354c7a0b28f5f30de5f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Apr 13 00:03:54 2013 +0200

    Racket: accepting spaces within comint's prompt
    
    Since spaces are allowed inside filenames after all.

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 65bc295b35beac42e410ae78a3077ce28f1e49a9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Apr 12 01:05:34 2013 +0200

    A bit of documentation for the previous patches

 AUTHORS              | 9 +++++----
 NEWS                 | 2 ++
 doc/parens.texi      | 4 +++-
 elisp/geiser-mode.el | 9 +++++++++
 4 files changed, 19 insertions(+), 5 deletions(-)

commit 7a666d1e2da690ab45a2f40d388e47df711e4868
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Apr 12 00:57:23 2013 +0200

    Simplifications to previous patch

 elisp/geiser-debug.el |  9 +++++----
 elisp/geiser-eval.el  | 22 +++++++---------------
 elisp/geiser-mode.el  | 27 ++++++++++++---------------
 3 files changed, 24 insertions(+), 34 deletions(-)

commit 2ebc1225b929d2a3c3b25fbd7596adb4d49915f0
Author: Diogo F. S. Ramos <diogofsr@gmail.com>
Date:   Thu Apr 11 18:56:30 2013 -0300

    Evaluate last expression to buffer with a prefix
    
    Use a prefix before pressing C-x C-e to print the result of evaluating
    the expression before mark to the current buffer.

 elisp/geiser-debug.el |  6 +++---
 elisp/geiser-eval.el  | 10 ++++++++++
 elisp/geiser-mode.el  | 24 +++++++++++++++++-------
 3 files changed, 30 insertions(+), 10 deletions(-)

commit 246175eadf22a2ab7121be68d37d01f320ddb44a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Apr 12 00:04:26 2013 +0200

    Hide auto-started REPL
    
    I'm not convinced that this is the right thing, and the effect is a
    bit ugly (we use save-window-excursion), but maybe this is the correct
    thing to do for users that want auto-start.

 elisp/geiser-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 80028aa5e49cf897e371bf030eea399d14771e24
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 11 07:16:37 2013 +0200

    Documentation for the latest changes

 NEWS            |  5 +++++
 doc/parens.texi |  6 ++++++
 doc/repl.texi   | 12 ++++++++++++
 3 files changed, 23 insertions(+)

commit 96f8693803a4f49770f3bd7a1b3dbad778522987
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 11 07:16:17 2013 +0200

    New flag to automatically start REPLs when geiser-mode is activated
    
    When no live REPL is found, of course.  The flag's imaginatively
    called geiser-mode-start-repl-p.

 elisp/geiser-mode.el | 12 +++++++++++-
 elisp/geiser-repl.el | 14 +++++++++-----
 2 files changed, 20 insertions(+), 6 deletions(-)

commit d32d4e1a4480f236089fb27ce5f5c4968f1119e7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Apr 10 16:06:47 2013 +0200

    Fix for evaluations returning no result
    
    Such as (values), which produce a retort of the form ((result) ...),
    which has nothing wrong in it!  Thanks to Diogo.

 elisp/geiser-connection.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c0c3723b1b5ee54e977a25a2f8a409a8071f1976
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Apr 9 20:32:09 2013 +0200

    New customizable geiser-repl-query-on-kill-p
    
    In case you don't care about killing live REPLs...

 elisp/geiser-repl.el | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit 673c6c9fa481c3b50921f2d94afa3c5a73b1920e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Apr 2 18:45:20 2013 +0200

    More Racket for/* forms indentation from Diogo

 elisp/geiser-racket.el | 6 ++++++
 1 file changed, 6 insertions(+)

commit c85ba34b47b25614eb58219d5fc97815df7f7301
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 1 19:24:21 2013 +0100

    Using implementation-specific keywords also in REPL
    
    And, while we're at it, honour the new case-sentive flag, as suggested
    by Diogo.

 elisp/geiser-repl.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 00912584fa4871acee500a094793a0cbef5de211
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 1 04:33:21 2013 +0100

    Indentation rule for match/values (Diogo F.S. Ramos)

 elisp/geiser-racket.el | 1 +
 1 file changed, 1 insertion(+)

commit fb052f96692b233f21e989df1dd9c8b966d8c030
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 1 04:27:02 2013 +0100

    NEWS entry for the above, er, below

 NEWS | 3 +++
 1 file changed, 3 insertions(+)

commit 4d06d7e13c2b1873b2de2c85333faa6b3d4b93dc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 1 04:24:21 2013 +0100

    Configurable keyword case sensitivity
    
    By default, keywords are now not fontified in Scheme buffers unless
    they have the correct (lower) case.  This behaviour can be altered by
    new, per-implementation customization variables.
    
    Thanks to Diogo F. S. Ramos for pointing this out.

 elisp/geiser-guile.el  | 16 ++++++++++++----
 elisp/geiser-impl.el   |  5 +++--
 elisp/geiser-racket.el |  6 ++++++
 elisp/geiser-syntax.el | 11 ++++++++---
 4 files changed, 29 insertions(+), 9 deletions(-)

commit 8569220b3aa3312e9de80c95a28a36e7adb750c4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 23 00:24:35 2013 +0100

    Stop spreading misinformation about Racket's help browser
    
    Thanks to Vitalie Spinu

 doc/parens.texi | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 0e76e0d96b0ba2f5aa79aa2485e87daee675256c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 20 09:16:25 2013 +0100

    Indentation for match-let

 elisp/geiser-racket.el | 1 +
 1 file changed, 1 insertion(+)

commit 01cfa0befac00b068f62744e6cdf90d7b2472230
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 9 23:51:09 2013 +0100

    Indentation for Racket's struct
    
    Thanks to Diogo F. S. Ramos.

 elisp/geiser-racket.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2e581e278a1864be9143e841ec1b5c403dce0c86
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 7 03:20:43 2013 +0100

    Accepting ~ in geiser-add-to-load-path

 elisp/geiser-compile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7916065e7156db3f128c1e5fd27783b4a18baa2f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 3 02:44:19 2013 +0100

    Little cleanups, and C-u variant for the lambda thing

 elisp/geiser-edit.el |  8 --------
 elisp/geiser-mode.el | 10 +++++++++-
 2 files changed, 9 insertions(+), 9 deletions(-)

commit 5e63968f431a40c0ea8dc7391ee95b869d9d9bff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 3 01:24:38 2013 +0100

    NEWS and version housekeeping

 NEWS            | 11 +++++++++++
 configure.ac    |  2 +-
 doc/macros.texi |  4 ++--
 3 files changed, 14 insertions(+), 3 deletions(-)

commit 5c433339e648048e3efec422a2a974fe8e83134f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 3 01:05:24 2013 +0100

    Thanks to Ray

 AUTHORS | 3 +++
 1 file changed, 3 insertions(+)

commit f2ca54c25fc6e8cc4a90ddbe2513e774b1b2b2f3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 3 01:02:26 2013 +0100

    More robust lambda and keybinding to C-c \
    
    Since C-\ is a standard Emacs binding, and people know how to change
    it anyway.  I've also put the command in the menu for Geiser mode, for
    discoverability.  A pleasant surprise: greek lambdas are understood by
    both Racket and Guile.

 elisp/geiser-edit.el | 4 ++--
 elisp/geiser-mode.el | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 43dd4894285c2b2aff6bcc17ac9b2bf8f3868702
Author: Ray Racine <ray.racine@gmail.com>
Date:   Sat Feb 2 13:05:44 2013 -0500

    Insert Greek letter lambda.

 elisp/geiser-edit.el | 8 ++++++++
 elisp/geiser-mode.el | 1 +
 2 files changed, 9 insertions(+)

commit 9cdd48af25b299c32adb7dd1ddd025a5bc6fd1cf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 22 17:21:00 2013 +0100

    Using comint-dynamic-complete-filename
    
    .. which seems to be available also in emacs 23.2 (although reports as
    to whether it works are mixed), and has better behaviour anyways.

 elisp/geiser-completion.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9ded8b3b3b3cb0739c4650f55bb2190f16786bea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 19 18:54:07 2013 +0100

    Download links fixed

 doc/install.texi | 7 +++----
 doc/macros.texi  | 8 +++-----
 2 files changed, 6 insertions(+), 9 deletions(-)

commit 597d3ce0bef5185d9e969fed733226db6ee796bb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 19 18:53:35 2013 +0100

    ELPA-specific README

 Makefile.am |  4 ++--
 README.elpa | 40 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+), 2 deletions(-)
 create mode 100644 README.elpa

commit 79b938746d55e53ba73f186d746c3a0410256782
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 19 15:26:11 2013 +0100

    NEWS and AUTHORS updated

 AUTHORS |  1 +
 NEWS    | 18 +++++++++---------
 2 files changed, 10 insertions(+), 9 deletions(-)

commit 3eaa8bc8522ffd341d9036fc3e4be555dc9687c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 19 15:10:00 2013 +0100

    Preparations for 0.3

 NEWS            | 14 +++++++++++---
 configure.ac    |  4 ++--
 doc/macros.texi |  4 ++--
 3 files changed, 15 insertions(+), 7 deletions(-)

commit 7c2ca2bb6e59e312019613db85fd86e7918ee1dc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Dec 14 16:25:18 2012 +0100

    Racket: make sure stderr is flushed in REPL
    
    Thanks to Haiwei Zhou for catching this one!

 scheme/racket/geiser/user.rkt | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit bfcdc1c92dcf25dfd06cdc03fbd685c7daf40bbe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Dec 14 00:18:46 2012 +0100

    Racket: indentation for `local'.
    
    Hat tip Diogo F. S. Ramos.

 elisp/geiser-racket.el | 1 +
 1 file changed, 1 insertion(+)

commit 01bd372829e5309f24b3d14ca9a879ad1fd6f6c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 10 23:26:31 2012 +0100

    Fix: more encompassing lookup for images in scheme output
    
    We were not taking into account windows paths, with their backslashes
    and colons.

 elisp/geiser-image.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f6e0ac85012c2e46dff12e9ec0181c02b6074b8a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 11 16:58:07 2012 +0100

    New command geiser-repl-clear-buffer
    
    Just renamed geiser-repl--clear-buffer (we don't use -- when users can
    call the command with M-x normally) and added documentation.

 NEWS                 |  3 ++-
 README               |  1 +
 doc/cheat.texi       |  3 +++
 elisp/geiser-repl.el | 24 ++++++++++--------------
 4 files changed, 16 insertions(+), 15 deletions(-)

commit a814cf43fa33f66cb2fca512084d7ac2b63ae62a
Author: Jonas Rodrigues <jxonas@gmail.com>
Date:   Fri Nov 9 18:20:32 2012 -0200

    New function 'geiser-repl--clear-buffer'

 elisp/geiser-repl.el | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit f5144a27494a1e83d658d400289ba104b050ffd3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 28 01:38:17 2012 +0200

    Racket: fix for module evaluation/entering
    
    Our module loader is receiving load requests for module names
    represented as lists that are not exactly a submodule, in the sense
    that the path does not represent an actual file.
    
    This phenomenon happens for instance when specifying a reader in a
    #lang tag.  E.g.
    
       #lang at-exp racket
    
    will cause the loader to be called with module name '(main reader) and
    path <cols-path>/at-exp/main.rkt, where main.rkt does not exist.
    Afterwards, we see a call to load at-exp/lang/reader/rkt, with name
    reader, which is the real code.
    
    So, for now, i'm skipping all load requests with a list name,
    forwarding them to racket's default loader.

 scheme/racket/geiser/enter.rkt | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

commit 8bf3f70f6aba159461612be8577bd4193ee7c6e6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 27 22:58:38 2012 +0200

    Filename completion also in scheme buffers
    
    By means of a new entry in completion-at-point-functions that uses
    the handy comint-filename-completion.

 NEWS                       |  7 ++++---
 elisp/geiser-completion.el | 11 +++++++++--
 elisp/geiser-repl.el       |  2 --
 3 files changed, 13 insertions(+), 7 deletions(-)

commit de6fc09551730fe87f7f3d6f532bafd189c97236
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 24 05:17:34 2012 +0200

    Completing file names at the REPL, but only in string contexts

 NEWS                   | 1 +
 elisp/geiser-repl.el   | 4 +++-
 elisp/geiser-syntax.el | 3 +++
 3 files changed, 7 insertions(+), 1 deletion(-)

commit 5b77d598ee04f324cbaf4eaacfe71e534bb2ed34
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 24 05:04:46 2012 +0200

    Completing file names at the REPL
    
    When no other completion is available, that is.

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 08b4499a0c440279257b38d49003ea5a6c848a45
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 24 04:17:19 2012 +0200

    Little clean-ups to the indentation rules
    
    Splitting better the specially indented forms between our two
    implementations, so that users of a single one don't get weird
    indentations for froms without a special meaning in their scheme.
    
    Ideally, we should make these indentation rules buffer-local, so that
    when a user is in a, say, Guile buffer, module+ has no special
    indentation (as is the case now if that user also has activated
    support for Racket).

 NEWS                   |  3 +++
 elisp/geiser-guile.el  | 14 ++++++++++-
 elisp/geiser-racket.el | 77 ++++++++++++++++++++++++++++++++++++++++------------------
 elisp/geiser-syntax.el | 36 ---------------------------
 4 files changed, 69 insertions(+), 61 deletions(-)

commit fd71a43c2be7f86e7b68d2badca6030103f54f05
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 24 03:51:33 2012 +0200

    Racket: indentation for module+ forms

 elisp/geiser-racket.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 5f357d12363d9b214bab82ba12447d657733a289
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Oct 23 01:09:27 2012 +0200

    New custom var `geiser-repl-save-debugging-history-p'
    
    This variable controls whether REPL command history should contain
    inputs during the debugger sessions (for schemes with such a thing,
    that is, for Guile).

 elisp/geiser-repl.el | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

commit 5e1a4995ee1211f2a57d4fce4101b81be13d87db
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 13 04:14:25 2012 +0200

    Manual lookup shortcut (C-c C-d i) also in REPL buffers

 doc/cheat.texi       | 3 +++
 doc/repl.texi        | 4 +++-
 elisp/geiser-repl.el | 3 +++
 3 files changed, 9 insertions(+), 1 deletion(-)

commit b0684896df77372e8be1f4bcf6d6b7a1cb142b47
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 04:19:50 2012 +0200

    Finishing removal of the "foo ends here" footers
    
    I must admit this is yet another excuse to check geiserbot over at
    freenode.

 scheme/guile/geiser/completion.scm | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit d00c933074acc68774373e90301807e16e650c17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 04:17:35 2012 +0200

    Whitespace

 elisp/geiser-autodoc.el | 3 +--
 elisp/geiser-base.el    | 3 +--
 elisp/geiser-company.el | 3 +--
 elisp/geiser-compile.el | 3 +--
 elisp/geiser-custom.el  | 3 +--
 elisp/geiser-debug.el   | 1 -
 elisp/geiser-doc.el     | 3 +--
 elisp/geiser-edit.el    | 1 -
 elisp/geiser-eval.el    | 3 +--
 elisp/geiser-impl.el    | 4 +---
 elisp/geiser-log.el     | 3 +--
 elisp/geiser-menu.el    | 4 +---
 elisp/geiser-mode.el    | 3 +--
 elisp/geiser-popup.el   | 3 +--
 elisp/geiser-reload.el  | 1 -
 elisp/geiser-syntax.el  | 1 -
 elisp/geiser-table.el   | 1 -
 elisp/geiser-xref.el    | 3 +--
 18 files changed, 13 insertions(+), 33 deletions(-)

commit cbcfbe26411d0ffecd4e9627428d29113c398d7a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 04:12:00 2012 +0200

    Dummy entry in NEWS for 0.2.3

 NEWS | 3 +++
 1 file changed, 3 insertions(+)

commit 3092e3a32ed0fc77949f048ea0a4da2c8c26416f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 04:01:35 2012 +0200

    Please, bear with me

commit 055ac24eab065aa0b314be89815ba0bbf9525782
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 03:57:32 2012 +0200

    And this is another empty commit to check geiserbot

commit 299daf0dd388b568de34a11d55ede98f540bcc8d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 11 03:44:19 2012 +0200

    This is an empty commit to check geiserbot

commit 0e802791514eeb3e6185259939829ab5e7df5d96
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 30 05:21:50 2012 +0200

    Version bump -- next cycle begins!

 configure.ac    | 2 +-
 doc/macros.texi | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit aba6733e848c47cb4f8e5d749add65be51d5d784
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 30 04:42:27 2012 +0200

    Documentation updates

 INSTALL          | 339 ++++++++-------------------------------------------------------
 NEWS             |   5 +-
 README           |  50 +++-------
 THANKS           |   3 +
 doc/geiser.texi  |   3 +-
 doc/install.texi |  72 ++++++++++++--
 doc/macros.texi  |   4 +-
 doc/parens.texi  |  12 +--
 doc/repl.texi    |   2 +-
 doc/thanks.texi  |   3 +
 10 files changed, 136 insertions(+), 357 deletions(-)

commit 5ef6713714c875fb6a51e5504313c0f8963687be
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 30 01:49:53 2012 +0200

    New make target, elpa, to create ELPA target
    
    A bunch of shellish ops, but seems to be working fine.

 Makefile.am     | 39 +++++++++++++++++++++++++++++++++++++++
 elisp/geiser.el | 18 ------------------
 2 files changed, 39 insertions(+), 18 deletions(-)

commit a4dd6a93ffb8475df98baf8d3239cc404afd1460
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 30 01:48:31 2012 +0200

    Compilation warning

 elisp/geiser-table.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b18bd1f1bdfbdd92d3167884676c59b4c27bde92
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 29 23:55:07 2012 +0200

    Autoload cookies in geiser.el
    
    Useless there right now, but Emacs package engine is going to use
    them.

 elisp/geiser-racket.el |  1 +
 elisp/geiser.el        | 31 +++++++++++++++++++++++++------
 2 files changed, 26 insertions(+), 6 deletions(-)

commit 566442e67e7e85a5543515278d79e2a464598e0e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 15 22:13:54 2012 +0200

    Version bump
    
    Setting next version's value in the Git repos, so that people can have
    both unstable and stable versions in their systems.

 NEWS            | 2 ++
 configure.ac    | 2 +-
 doc/macros.texi | 7 ++++---
 doc/web.texi    | 2 +-
 4 files changed, 8 insertions(+), 5 deletions(-)

commit 2d8058f7f834106230e0aef637b05b0a8b83882b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 15 21:52:28 2012 +0200

    New download link

 doc/install.texi | 2 +-
 doc/macros.texi  | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)

commit be72bafd337df18ecfbc64fa01f5a1704186c985
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 15 18:26:30 2012 +0200

    racket: correctly jump to symbols defined in .ss modules
    
    Racket is returning by default their canonical "rkt" name, which
    sometimes is not what's in the filesystem.

 NEWS                               |  2 ++
 scheme/racket/geiser/locations.rkt | 15 +++++++++++----
 2 files changed, 13 insertions(+), 4 deletions(-)

commit d23e836753472c33a5339446160dc3891ac0c2bd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 15 17:50:42 2012 +0200

    News and version tags for 0.2.1

 NEWS            | 14 ++++++++++++++
 configure.ac    |  2 +-
 doc/macros.texi |  2 +-
 3 files changed, 16 insertions(+), 2 deletions(-)

commit 144025a8c111ca4082e0b039bf459dc5225a2a54
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 15 16:39:21 2012 +0200

    racket: fix re-loading of modules with submodules (e.g. plai-typed)
    
    Resolved module path can now be, besides symbols, a list representing
    a submodule.  When deciding whether what we are loading in enter's
    current loader is a module or not, we have now to take that bit into
    account.

 scheme/racket/geiser/enter.rkt | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 5e1e9373efcd937635eea68c94d52aa00f4c565d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 8 20:05:15 2012 +0200

    racket: autodoc for PLAI's define-type

 scheme/racket/geiser/autodoc.rkt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 977335378247e8c7df0594fc300cb82c4ce6bbc7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 8 19:24:10 2012 +0200

    Racket: new option to specify network interface for REPL server
    
    In geiser-racket.sh, there's the new option -n, which uses a new
    hostname argument accepted by geiser/user's start-geiser function.

 bin/geiser-racket.sh          |  4 +++-
 doc/repl.texi                 | 11 ++++++-----
 scheme/racket/geiser/user.rkt |  8 ++++----
 3 files changed, 13 insertions(+), 10 deletions(-)

commit 97f2fb5b47aaeec00cdcd1c6082e95c907eb3f62
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 23:12:20 2012 +0200

    Dates updates

 NEWS         | 2 +-
 doc/web.texi | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit a0576387d7eaf3ef9d10d77630544b733fc51b76
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 23:06:03 2012 +0200

    Image support documented in user manual

 doc/geiser.texi         |   3 ++-
 doc/img/repl-images.png | Bin 0 -> 150007 bytes
 doc/intro.texi          |   3 +++
 doc/parens.texi         |   9 ++++++++-
 doc/repl.texi           |  33 ++++++++++++++++++++++++++++++---
 5 files changed, 43 insertions(+), 5 deletions(-)
 create mode 100644 doc/img/repl-images.png

commit 3439cf7784cd6f1e18e5c71797f904575dac0271
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 22:34:33 2012 +0200

    geiser-system-image-viewer -> geiser-image-viewer

 elisp/geiser-image.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit a1f7d888a9d2139b9eb9e2b146ffb682107bf7f2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 21:55:04 2012 +0200

    Credits and boilerplate for the a new version

 AUTHORS         | 7 +++++--
 README          | 4 +++-
 THANKS          | 3 +++
 configure.ac    | 4 ++--
 doc/macros.texi | 4 ++--
 doc/thanks.texi | 3 +++
 6 files changed, 18 insertions(+), 7 deletions(-)

commit 18d00a80b4f3d7e3a38368bc124b252ddb1cd63c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 21:39:04 2012 +0200

    Including the new images.rkt in the distribution
    
    By listing it in the corresponding Makefile.am file.  I wonder how
    useful maintaining all this autofoo stuff really is: creating an ELPA
    package could be more handy for people not using the git repo
    directly, and much easier to maintain.

 scheme/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 1854a6b537d2e462d15b90af9e14719cbaeb8829
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 21:35:18 2012 +0200

    NEWS update
    
    ... in preparation for 0.2.

 NEWS | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit cfed599a48b36b412a08b08df96fee230b58c06b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 20:56:22 2012 +0200

    Elisp: insert instead of put images
    
    Images rendered via put-image won't be deleted by
    erase-buffer (they're overlays), while those inserted by
    insert-image (text properties) will.

 elisp/geiser-image.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8f2e4ba17b704965f3a35d1d0a312dec31800862
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 20:19:36 2012 +0200

    racket: displaying images also during evaluations

 elisp/geiser-debug.el           | 36 ++++++++++++++++++++++++++++--------
 elisp/geiser-image.el           | 46 +++++++++++++++++++++++++---------------------
 elisp/geiser-repl.el            |  4 +++-
 scheme/racket/geiser/eval.rkt   |  8 ++++----
 scheme/racket/geiser/images.rkt | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 scheme/racket/geiser/user.rkt   | 35 +++--------------------------------
 6 files changed, 109 insertions(+), 66 deletions(-)
 create mode 100644 scheme/racket/geiser/images.rkt

commit b05120e5872382528c73416046d4e19cdb1bc88f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 14:11:30 2012 +0200

    Racket: fix for enter!

 scheme/racket/geiser/enter.rkt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 69d94011a0261392a7772980d2b95e1469b2e876
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 03:29:15 2012 +0200

    Credits in header

 elisp/geiser-image.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 18c0a96cbf293e5b702316476634936766a5fd11
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 03:26:28 2012 +0200

    Image support: buttons and auto-display in the REPL
    
    When geiser-repl-inline-images-p is false (or we're in a terminal),
    the inserted text replacement is a button that calls the external
    viewer on click.  There's also a parameter controlling whether the
    viewer should be invoked automatically upon insertion.

 elisp/geiser-image.el | 32 +++++++++++++++++++++++---------
 elisp/geiser-repl.el  | 21 +++++++++++++++------
 2 files changed, 38 insertions(+), 15 deletions(-)

commit 67a2d3eac579b10e2f526f1282b459fcf8f12804
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 2 02:34:47 2012 +0200

    Image display functionality refactored to its own module

 elisp/Makefile.am      |   2 +-
 elisp/geiser-image.el  | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-racket.el |  13 +++-----
 elisp/geiser-reload.el |   3 +-
 elisp/geiser-repl.el   |  69 ++------------------------------------
 elisp/geiser.el        |   3 +-
 6 files changed, 113 insertions(+), 79 deletions(-)
 create mode 100644 elisp/geiser-image.el

commit de61b6f6580be0daad3e7aa97acd1534c30fbedf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 1 05:42:46 2012 +0200

    Little cleanups

 scheme/racket/geiser/enter.rkt | 112 +++++++++++++++++++++++++------------------------
 1 file changed, 58 insertions(+), 54 deletions(-)

commit bc21d274994eb40366d1c372fd1185483815b7ef
Merge: 6c5ceb7 52b7dbc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 25 06:29:03 2012 +0200

    Merge branch 'master' of git.sv.gnu.org:/srv/git/geiser
    
    Conflicts:
            elisp/geiser-racket.el

commit 6c5ceb7ce8f194a7d0e542a3bae268e0506fdd71
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 25 06:10:05 2012 +0200

    racket: reading into elisp-land the cache dir as needed
    
    When no cache dir is set in the emacs customization, we ask Racket for
    the one that it's using by default.

 elisp/geiser-racket.el        | 9 +++++----
 scheme/racket/geiser/user.rkt | 8 +++++---
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 52b7dbc9555f338dd529542e141f9938047db247
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 25 06:10:05 2012 +0200

    Racket: reading into elisp-land the cache dir as needed
    
    When no cache dir is set in the emacs customization, we ask Racket for
    the one that it's using by default.

 elisp/geiser-racket.el        | 9 +++++----
 scheme/racket/geiser/user.rkt | 8 +++++---
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 9b31ffba524337003c00a62997a27a62a270100e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 20 06:15:04 2012 +0200

    Racket: configurable image cache directory
    
    Brought to you by a comma-command in the REPL and the REPL startup
    function.

 elisp/geiser-racket.el        | 37 +++++++++++++++++++++++++------------
 scheme/racket/geiser/user.rkt | 11 ++++++++++-
 2 files changed, 35 insertions(+), 13 deletions(-)

commit 040f2c628c09efd64a100e47fe134d6f7a65caf2
Author: Michael W <gcr@sneakygcr.net>
Date:   Wed Aug 15 21:48:32 2012 -0600

    Simplified image display.
    
    Emacs now remembers the directory that Racket put the last image in.
    It leaves up to 10 previously viewed images in this directory,
    providing an 'image history'.
    
    This also reduces memory requirements; emacs no longer reads image
    content into memory.

 elisp/geiser-repl.el | 78 +++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 43 insertions(+), 35 deletions(-)

commit 84e662dff7a17532c1a4d953e9123a288f575cf2
Author: Michael W <gcr@sneakygcr.net>
Date:   Wed Aug 15 21:46:54 2012 -0600

    Documentation improvements

 elisp/geiser-repl.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b1320af7fd30c309604ce089f28dd63f370a8ed0
Author: Michael W <gcr@sneakygcr.net>
Date:   Sun Aug 12 16:24:36 2012 -0600

    [WIP] Add capability for images to be viewed in an external image viewer.

 elisp/geiser-repl.el | 38 +++++++++++++++++++++++++++++++++++---
 1 file changed, 35 insertions(+), 3 deletions(-)

commit cc15e31fb57e32d5498681a1d97d6c74bcdaf0bc
Author: Michael W <gcr@sneakygcr.net>
Date:   Sun Aug 12 15:12:56 2012 -0600

    [WIP] Emacs cleans up temp. images, and a parameter controls whether or not they are displayed in the REPL.

 elisp/geiser-repl.el | 29 +++++++++++++++++++++++++----
 1 file changed, 25 insertions(+), 4 deletions(-)

commit 998e709f65a8bd9acfd1917d0ac4aaa47f67030b
Author: Michael W <gcr@sneakygcr.net>
Date:   Sun Aug 12 12:32:03 2012 -0600

    [WIP] Draw images inline in the Racket REPL.
    
    On the racket side, we use a custom print handler to print
    images (convertible? values; see file/convertible) in a special format:
    #<Image: filename>
    
    On the geiser side, we add a comint post-output hook to search for
    that filename and replace it with inline images.

 elisp/geiser-repl.el          | 11 +++++++++++
 scheme/racket/geiser/user.rkt | 28 ++++++++++++++++++++++++++--
 2 files changed, 37 insertions(+), 2 deletions(-)

commit 540293601e7dcac9eb193d529d7b2413765f3c72
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 1 02:18:55 2012 +0200

    Racket: fix for module compilation for recent rackets
    
    This one probably requires Racket 5.3, and incorporates some
    parameterization to the module compilation and evaluation code in
    Geiser's version of enter.rkt.  I'm mostly mirroring what the latter
    does, and i'm probably not completely understanding all corner cases,
    so the two users of Geiser should keep an eye open for possible
    breakage introduced by this patch.

 scheme/racket/geiser/enter.rkt | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 1312f42a54252fa4378d7dfbd68591f9e6275c1a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 1 01:56:25 2012 +0200

    Correctly buttonizing paths with leading spaces in DBG buffers
    
    Just adjusting a regexp.

 elisp/geiser-edit.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d50d191e6e9fdb3d4f4521ea85edd426124f9797
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 9 14:24:22 2012 +0200

    Support for user-defined Guile info nodes
    
    In my debian machine, the info nodes for guile live in the "guile-2.0"
    node, rather than plain "guile".  A new customizable variable,
    geiser-guile-manual-lookup-nodes, lets now specify additional names,
    and we only add indexes to the info-lookup mode definition when the
    node actually exists.

 doc/parens.texi       | 14 ++++++++++----
 elisp/geiser-guile.el | 25 +++++++++++++++++++------
 elisp/geiser-repl.el  |  4 ++--
 3 files changed, 31 insertions(+), 12 deletions(-)

commit 30231d54fb2801f4c10a952ab5e257cdd5205491
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 16 02:01:41 2012 +0200

    Racket: indentation for all 'for' forms
    
    We had only for two of them, and one was wrong!

 elisp/geiser-racket.el | 31 ++++++++++++++++++++++++++++++-
 elisp/geiser-syntax.el |  2 --
 2 files changed, 30 insertions(+), 3 deletions(-)

commit 40f5d8e6a09a7f010c5fc605619512f4d8e1ce98
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 2 12:13:30 2012 +0200

    Highlighting [else properly in Racket buffers
    
    That is, `else' gets keyword fontlocking.  Undecided as to whether
    extend this highlighting to all schemes...

 elisp/geiser-racket.el | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

commit 9b76fa6e9927c09ad36fdf93bc8d1e570fcf6383
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 24 09:45:44 2012 +0100

    ,cd for Racket REPL
    
    It's not perfect and undocumented, but useful nonetheless.

 scheme/racket/geiser/enter.rkt | 4 +---
 scheme/racket/geiser/user.rkt  | 3 ++-
 2 files changed, 3 insertions(+), 4 deletions(-)

commit a6670bbcdc83237ae32e0fcb0c3fe95dc53255bf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 5 02:11:10 2012 +0100

    Keeping autodoc active in the REPL
    
    We were not re-activating it on new input, cause we weren't detecting
    the prompt unless preceeded by other output (and, hence, a newline).

 NEWS                 | 9 ++++++++-
 elisp/geiser-repl.el | 5 +++--
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 8378428fb4dd3317ba96605215d1397db0a6ae34
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 31 15:36:18 2012 +0100

    Better indentation for Racket's for/hash

 elisp/geiser-syntax.el | 1 +
 1 file changed, 1 insertion(+)

commit fd617a8f0cde31ed2ddfde1cac8bd2bfb6099e79
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 17 00:15:00 2012 +0100

    Correct indentation for syntax-id-rules
    
    Hat tip Marijn.

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f3c6c8dc2d96960375e773eb86a481d678b58cfa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 26 08:12:35 2011 +0100

    NEWS update and version bump to 0.1.4

 NEWS            | 11 ++++++++++-
 configure.ac    |  2 +-
 doc/macros.texi |  2 +-
 doc/web.texi    |  2 +-
 4 files changed, 13 insertions(+), 4 deletions(-)

commit 9857c254979e7c43a3f432c1927a168d6437398c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 26 07:11:26 2011 +0100

    Racket: capturing and displaying standard error during evaluation
    
    This bugs was exposed by using rackunit, where all the output of, say,
    check-eq? was lost for good (it was being sent to the stderr black
    hole).
    
    Hat tip Grant Retkke.

 elisp/geiser-debug.el            |  7 ++++---
 elisp/geiser-racket.el           |  7 +++----
 scheme/racket/geiser/eval.rkt    |  5 +++--
 scheme/racket/geiser/modules.rkt | 26 +++++++++++++++++---------
 4 files changed, 27 insertions(+), 18 deletions(-)

commit 8167ddb673800b43d78b6164673506e6d6fd6ef7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 1 23:03:41 2011 +0200

    Bug fix: avoiding sending unbalanced sexps in C-c C-r and friends
    
    We were not checking that the region sent to the scheme process was
    balanced, resulting in said process waiting for ever on `read' (or its
    moral equivalent in our current implementation).  We now just refuse
    to evaluate an improper region in the first place.

 elisp/geiser-mode.el | 3 +++
 1 file changed, 3 insertions(+)

commit 3a6dfbf743cc56b7d454bc6c688cd983966acc6c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 29 18:43:27 2011 +0200

    Racket: indentation for splicing-let and friends
    
    At some point, we should make indentation rules buffer-local.

 elisp/geiser-racket.el | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

commit bc4f5e2de6ece6f2d314948f742d0771b5ada858
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 29 18:40:30 2011 +0200

    Documentation bit

 doc/macros.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f273fa0ebbc2f94e2b0134a7e8824123fbb76f03
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 15 03:15:18 2011 +0200

    Compatibility with filladapt.
    
    Seems like the add-on package filladapt.el is broken in that its
    version of fill-adapt uses a non-optional first argument.  Aquamacs
    users were filling the pain.  Fixed by passing nil in our call to
    fill-paragraph.  Hat tip Jonathan Oddie.

 elisp/geiser-doc.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit d0b0b31399fe00b877b5dfefc2e3563aa6f257ed
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 11 21:35:15 2011 +0200

    Guile: capturing output to standard error
    
    We were just ignoring it so far!

 scheme/guile/geiser/evaluation.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ffd2cea60f6e7d8d0cf9a1fda6912b2003b92855
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 8 23:15:36 2011 +0200

    bug fix: make C-c C-z behave with run-geiser
    
    The nice go-back-to-previous-scheme-buffer behaviour of C-c C-z wasn't
    working when the jump from a scheme file to the REPL was initiated via
    run-geiser.  Thanks, Marijn.

 elisp/geiser-repl.el | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

commit d708438236cac2ee3c0a63f06eded5d9a6f38a9f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 24 03:35:02 2011 +0200

    Guile: deprecated format usage eliminated
    
    Actually, i'm not even sure the calls to format i was using were
    correct at all!

 scheme/guile/geiser/modules.scm | 5 ++---
 scheme/guile/geiser/utils.scm   | 6 ++----
 2 files changed, 4 insertions(+), 7 deletions(-)

commit 7209628e61a2468aac259b3a53f7716a844b48dc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 20 22:47:53 2011 +0200

    REPL: restore TAB indenting behaviour around whitespace

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b2a931ed644123162154916e3420ee879d80ad17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 20 20:47:53 2011 +0200

    REPL: new customizable faces for input and prompt
    
    Namely, geiser-font-lock-repl-prompt and geiser-font-lock-repl-input.

 NEWS                 | 11 +++++++++++
 doc/repl.texi        | 30 +++++++++++++++++++-----------
 elisp/geiser-repl.el | 11 +++++++++++
 3 files changed, 41 insertions(+), 11 deletions(-)

commit 51982d010fd4a44f93d6df3eceda6ffcebe1dbc2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 20 18:15:07 2011 +0200

    Leftover code from the previous patch removed

 scheme/racket/geiser/utils.rkt | 2 --
 1 file changed, 2 deletions(-)

commit 1627471032647e6a13149242ad9547b5124c1c4f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 20 03:31:54 2011 +0200

    Racket: eval geiser-eval's apply arguments properly
    
    As Stanisław Halik reported, autodoc was receiving a mlist (instead of
    a list) as its argument when invoked in an R5RS context.  Turns out we
    were evaluating geiser-eval's arguments in the wrong context (the
    procedure being applied and the arglist belong to the same namespace).

 scheme/racket/geiser/autodoc.rkt | 7 +++----
 scheme/racket/geiser/user.rkt    | 8 +++++---
 scheme/racket/geiser/utils.rkt   | 4 ++--
 3 files changed, 10 insertions(+), 9 deletions(-)

commit 0ef26298d48bd0ae605096a187be35ef4759a722
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 20 03:23:30 2011 +0200

    elisp: customizable patience amount on racket startup
    
    In this little notebook i'm using, racket takes its time to start.  In
    fact, it can take more the previously slotted 10 seconds.  Hence the
    new geiser-repl-startup-time variable.

 doc/repl.texi        | 16 ++++++++++++++++
 elisp/geiser-repl.el |  8 +++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 582fe2461ebe47a54fecf1b93167d449555883cb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 2 17:07:27 2011 +0200

    elisp: add-hook doesn't need a defvared hook
    
    Thanks, Leo.

 elisp/geiser.el | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 7acf285df13c783c07ce9570dda8ef0959e215aa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 26 23:49:56 2011 +0200

    Nit

 doc/web.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0f992affad49eda32dd598e40038c4328e0d6b5d
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 02:04:10 2011 +0200

    Boring preparations for 0.1.3

 NEWS            | 13 +++++++------
 configure.ac    |  2 +-
 doc/macros.texi |  2 +-
 3 files changed, 9 insertions(+), 8 deletions(-)

commit 03cffc7ba1993c79608d62f8d8c8f93606f5c882
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 01:30:48 2011 +0200

    NEWS update

 NEWS | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit e7c3ba0c5282999be36c4cdd67fb4f1501e73ecf
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 01:29:09 2011 +0200

    Guile: find module when cursor is before define-module (#33497)
    
    If we didn't find a define-module form after the cursor, or an
    enclosing R6RS library form, we search forward for a module
    definition.  That way, things like C-c C-a work also from the top of
    the file.

 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 1fed886738b8c99e958fa6dec9948e239c93ded3
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 00:40:37 2011 +0200

    Irrelevant compilation warning fix
    
    Using called-interactively-p instead of interactive-p, if you have to
    know.  The latter is deprecated as of Emacs 23.2, which the lowest
    version supported by Geiser.

 elisp/geiser-autodoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 25052fd1f266f6eee67d7a41ab99aee797dea22a
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 00:33:47 2011 +0200

    .gitignore update

 .gitignore | 1 +
 1 file changed, 1 insertion(+)

commit 830a0036f43341b2c5e1451ef1d7ed09b70768ec
Author: jao <jao@gnu.org>
Date:   Thu Jun 23 00:32:27 2011 +0200

    Avoid (read) breakage (fixes #33090)
    
    Autodoc was firing while the REPL was waiting for input of a (read)
    call, causing all kinds of misbehaviour.  We now inhibit autodoc on
    sending a form for evaluation and re-inhibit it once a prompt is read
    back again.

 elisp/geiser-autodoc.el    |  8 +++++++-
 elisp/geiser-connection.el |  4 ++++
 elisp/geiser-repl.el       | 11 +++++++----
 3 files changed, 18 insertions(+), 5 deletions(-)

commit 2efa614b7de69a3dc4de66f81f0de3fb48110524
Author: jao <jao@numenor.local>
Date:   Sun May 1 18:04:30 2011 -0700

    Documentation fixes courtesy of M. Harig
    
    In this episode, we learn how to use @ escapes in texinfo urls.

 NEWS            |  2 +-
 doc/macros.texi |  4 ++--
 doc/parens.texi |  4 ++--
 doc/repl.texi   | 14 +++++++-------
 doc/thanks.texi | 12 ++++++------
 5 files changed, 18 insertions(+), 18 deletions(-)

commit 04902b39229eafdfa41e2c1d5a9857133f53805d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 21 12:30:11 2011 +0100

    Racket: use the proper interaction port for input (#32844)
    
    Thanks to Caleb Reach.
    
    We were using current-input-port, which is not the right port in
    graphical environments.

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 34705d0e411aa28c8a83ca521bd7c5107a37ffd7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 21 12:27:53 2011 +0100

    Minor web nit

 doc/web.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit cb6f671ed83d38a7e1e41b03d4beec2a90f4551d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 9 00:44:32 2011 +0100

    NEWS update for 0.1.2

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ba5c6559a53b23238a62381a4eec64c3a5194174
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 8 22:03:45 2011 +0100

    Guile: what if i do what i meant to do?
    
    Thanks Jon!

 NEWS                  | 2 ++
 elisp/geiser-guile.el | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

commit 5ad2dac3dcba6a760eac16b7c23dde2f19a0056c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 8 20:51:28 2011 +0100

    Guile: new option for loading ~/.guile (see issue #32681)
    
    The new custom variable, geiser-guile-load-init-file-p, will be gone
    once Guile adquires the ability to specify the path to its init file.

 doc/repl.texi         |  9 +++++++++
 elisp/geiser-guile.el | 20 ++++++++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)

commit 419985a0ec49deba4c5d0d22dc8b396916af28c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 16:28:20 2011 +0100

    Bug fix: don't confuse REPL buffers
    
    We were not checking the implementation associated to a REPL buffer
    when reusing it, with much confusion ensued.

 elisp/geiser-repl.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 5556754a5a384857a88651b449c77fd83dd1496d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 16:10:55 2011 +0100

    Missing require form

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit 30e277253513ccb274c7f2e3a131b2e82d478715
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 03:38:26 2011 +0100

    Elisp nit
    
    Nothing interesting, really.

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4077b87e8654313ea3005e7358d7ad52e0668342
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 03:33:41 2011 +0100

    Mentioning Guile 2.0 instead of its git version

 README           | 2 +-
 doc/install.texi | 6 ++----
 doc/macros.texi  | 2 +-
 3 files changed, 4 insertions(+), 6 deletions(-)

commit 8a0e5f1bb49ed6a8188604aaf847e804fa0e8ccf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 03:33:09 2011 +0100

    Fix for harmless elisp compilation warning

 elisp/geiser-eval.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 98374c61cc6de60f2fa2912ee9b5e3d199477ab7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 6 03:18:43 2011 +0100

    Racket: geiser-add-to-load-path implemented
    
    And we take the chance to lightly document the existence of this
    new command in the user manual.

 doc/cheat.texi                |  6 ++++++
 scheme/racket/geiser/eval.rkt | 12 +++++++++++-
 scheme/racket/geiser/main.rkt |  6 ++----
 scheme/racket/geiser/user.rkt |  1 +
 4 files changed, 20 insertions(+), 5 deletions(-)

commit 0e8be474273d6a515622334a16f2b0d34024e934
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 5 13:28:34 2011 +0100

    Bug fix: honour geiser-repl-use-other-window

 NEWS                 |  5 +++--
 doc/repl.texi        |  4 +++-
 elisp/geiser-repl.el | 16 +++++++++++-----
 3 files changed, 17 insertions(+), 8 deletions(-)

commit 1177482fcd38d4150b5d33ddc42eb10f8a8e6b9b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 27 13:52:00 2011 +0100

    NEWS update
    
    Now that the previous patch seems to work (thanks David Bremner!).

 NEWS | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 68a4e69aca1f8a84330def1ee24b2da6243419c0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 27 13:14:30 2011 +0100

    Racket: no errors ,entering an R5RS module
    
    The catch here is that one cannot use #%variable-reference inside an
    R5RS module, and, as a consequence, namespace->module-path-name was
    failing badly.  The solution is to take note of the module name being
    entered before hand, and use that name in case of error (we could
    actually use that name always, but then cheaters using Racket's enter!
    would see an inconsistent name (which probably they deserve)).

 scheme/racket/geiser/modules.rkt | 36 +++++++++++++++++++++---------------
 scheme/racket/geiser/user.rkt    | 23 +++++++++++++++++------
 2 files changed, 38 insertions(+), 21 deletions(-)

commit 8eac2e737ac4f7563c944f4cfec9e8075d307d78
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 27 12:53:38 2011 +0100

    Whitespace, if periods are considered whitespace

 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 50776ebe0b240964d0e17ce3055065d89775770c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 25 16:15:16 2011 +0100

    NEWS update

 NEWS | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 3f65b0938779e9bd045328cb90d7080b6455652e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 25 16:05:11 2011 +0100

    Guile: setting *current-warning-prefix* during evaluation
    
    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).

 scheme/guile/geiser/evaluation.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8599a4574161a4049e3558c89f4b34f82f9e17af
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 14 16:48:38 2011 +0100

    Bug fix: don't override customized geiser-implementations-alist

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit be34499abce0869c92a5141dd89149c180e88bb0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 14 06:48:31 2011 +0100

    Fix for the fix of the fix

 elisp/geiser-connection.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ccbe0889287c3a1da10da0d315790ae9ae682239
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 14 06:25:59 2011 +0100

    Fix for the fix

 elisp/geiser-connection.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit a6c553d0d8e3d75d5557c40288ee0e2cf8418f3d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 14 06:10:50 2011 +0100

    Guile REPL: bug fix: correctly track debugging status
    
    We weren't tracking the "enter debugger" event correctly, and all
    evaluations in debug mode were failing.  There's still (at least)
    another bug, because error navigation in backtraces seems broken.

 elisp/geiser-connection.el | 25 +++++++++++++++++++------
 elisp/geiser-repl.el       |  7 +++++++
 2 files changed, 26 insertions(+), 6 deletions(-)

commit 24ae4c34e08cd07945044f605b2d8a0306cc78c3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 14 06:08:30 2011 +0100

    Guile: indentation for `with-error-to-port`

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 6287a845e278af6ccb91fe9eb0e073fd913d3b89
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 11 23:00:15 2011 +0100

    Bug fix: M-x geiser-edit-module works again in the REPL

 NEWS                 | 1 +
 elisp/geiser-repl.el | 5 ++++-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 168d46758ae03dc775293c60945cd6fd0513ce9a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 9 23:49:50 2011 +0100

    More robust retort detection
    
    Some schemes (okay, Guile) may output spurious messages besides a
    well-formed retort.  This will be eventually fixed; in the meantime,
    we try to skip the noise (and may fail miserably if that noise has a
    form similar to the signal we search).

 elisp/geiser-connection.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit c676e46833fc2b38b2c21b44b7e6b52b5167329b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 9 14:21:24 2011 +0100

    Guile: 'format' added to the warning list

 elisp/geiser-guile.el              | 6 +++---
 scheme/guile/geiser/evaluation.scm | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 4be9061b98b7723b5591c86005a25d0e6692208d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 3 23:23:06 2011 +0100

    Off-by-one in geiser-repl-tab-dwim

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1536e3bf322ad27f6f4a4f961efbd8510148a5d6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 3 22:33:45 2011 +0100

    New geiser-add-to-load-path, just for Guile right now
    
    As per Andy's request.  Adding it to Racket (and to the user manual),
    shouldn't be difficult).

 NEWS                               |  7 ++++-
 README                             | 74 ++++++++++++++++++++++++----------------------
 elisp/geiser-compile.el            | 10 ++++++-
 elisp/geiser-mode.el               |  3 +-
 elisp/geiser-repl.el               |  1 +
 scheme/guile/geiser/evaluation.scm | 11 +++++--
 6 files changed, 65 insertions(+), 41 deletions(-)

commit 1eb968ccfdf86ae6d206540f84856d56e2045277
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 25 02:34:45 2011 +0100

    Version bumped, lest if forget

 NEWS            | 6 ++++++
 configure.ac    | 4 ++--
 doc/macros.texi | 2 +-
 3 files changed, 9 insertions(+), 3 deletions(-)

commit 184536efb4f47be0e00e7dfd67d7b63cff942bb1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 25 02:28:32 2011 +0100

    Company fixes (module name completion)
    
    We were not handling properly mixing id and module names
    completion. In Guile, it's a lost cause, because module names are not
    identifiers and, therefore, don't share prefixes. In Racket, things
    are nicer in that respect: there we can offer both at once. In Guile,
    one at least has (thanks to this patch, too) M-`.

 elisp/geiser-company.el | 93 ++++++++++++++++++++++++++++++---------------------------
 1 file changed, 49 insertions(+), 44 deletions(-)

commit 89b89ec5a4bedf654517720010add2578dbffc16
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 24 23:30:03 2011 +0100

    company-mode fixes (an attempt to fix #32231)
    
    i hope the anonymous reporter will check this...

 elisp/geiser-company.el | 7 +++----
 elisp/geiser-repl.el    | 2 +-
 2 files changed, 4 insertions(+), 5 deletions(-)

commit bc18b4415820b82af4e53158f80e74b2225c27ef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 24 01:10:45 2011 +0100

    More documentation nits

 doc/cheat.texi | 4 ++--
 doc/repl.texi  | 7 ++++---
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 961349906f0e48139152ac1b77fa0a2273bbdbbb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 23 21:55:57 2011 +0100

    Documentation nits

 NEWS            | 5 +++--
 doc/cheat.texi  | 1 -
 doc/parens.texi | 8 ++++----
 3 files changed, 7 insertions(+), 7 deletions(-)

commit 9af0e2f94eaf277ad8f4e3e57b9c0fb76327da00
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 23 21:12:29 2011 +0100

    Fix for bug in module name completion (affecting Guile)

 elisp/geiser-completion.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit ba3fb44c64eac29fd0b322fb811f1983eaacf796
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 23 20:12:16 2011 +0100

    geiser-repl--tab -> geiser-repl-tab-dwim
    
    Following a suggestion by M. Harig, and following the policy that it's
    better for command names to not be doubly hyphenated.

 doc/cheat.texi       | 2 +-
 elisp/geiser-repl.el | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 209110b1852fec5260e95deb9a47208c67927e2f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 22:22:22 2011 +0100

    NEWS update

 NEWS | 1 +
 1 file changed, 1 insertion(+)

commit 847fd9c4e5f847a5bf0b007c7dddf693a6857229
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 22:22:10 2011 +0100

    Manual: fixes for the print edition

 doc/parens.texi | 8 ++++----
 doc/repl.texi   | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

commit 309bb67eb7b9ff06a3278eea4680a3287283c9b6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 16:19:04 2011 +0100

    Cheat sheet updated

 README         | 2 +-
 doc/cheat.texi | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 0fac0de329fb7c775f123f6bef74e999de89a529
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 14:45:48 2011 +0100

    C-c C-Z -> C-c C-a
    
    Since C-c C-z/Z apparently conflict with each other, and the new
    keybinding is more friendly anyway.

 doc/parens.texi      | 2 +-
 elisp/geiser-mode.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit a11b28612594d1830ae3939c9be65cbe7f00b949
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 03:06:01 2011 +0100

    Nit

 doc/parens.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 481d2b4f4b5ee935779b6916b58d6d9d48f89b3a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 11 02:43:54 2011 +0100

    More documentation fixes

 doc/install.texi |  7 ++++++-
 doc/macros.texi  |  9 ---------
 doc/parens.texi  | 52 ++++++++++++++++++++++++++++++++++++++++------------
 doc/repl.texi    | 17 ++++++++++++-----
 4 files changed, 58 insertions(+), 27 deletions(-)

commit 4b13b107c62682c7a55de18f396862dcfe01acf1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 22:02:46 2011 +0100

    Fixes for links in info manual

 doc/macros.texi |  8 ++++----
 doc/parens.texi |  6 +++---
 doc/repl.texi   | 14 +++++++-------
 3 files changed, 14 insertions(+), 14 deletions(-)

commit 2ff0d4afe8730859d84dbe4a959d7d3147c6d495
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 20:45:00 2011 +0100

    A couple more doc fixes

 doc/parens.texi | 6 +++---
 doc/repl.texi   | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 8c4a672ccc24711edf61a0ef29747a870aba35f8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 16:01:23 2011 +0100

    More documentation improvements

 doc/parens.texi | 27 ++++++++++++++-------------
 doc/repl.texi   | 12 ++++++------
 2 files changed, 20 insertions(+), 19 deletions(-)

commit f9fbf7ee18f5de9b1608c303bb108552e041e205
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 15:32:30 2011 +0100

    Manual: whitespace and missing @noindent
    
    Thanks, once again, to Mark Harig.

 doc/install.texi | 2 ++
 doc/parens.texi  | 7 +++++--
 doc/repl.texi    | 8 +++++---
 3 files changed, 12 insertions(+), 5 deletions(-)

commit df7da58dec06aa66c5cdf3a0657ed6baee7c0150
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 15:31:40 2011 +0100

    Manual: copyright text to the beginning of Top node

 doc/geiser.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 99bf1fc9e86cd575c58e2a5e3fc7914109302568
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 15:30:38 2011 +0100

    Fix for index.texi's @node

 doc/index.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit f5a5313f480998d295bccac6a063085c49d296d4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 10 03:01:12 2011 +0100

    NEWS and doc typo

 NEWS          | 12 +++++++-----
 doc/repl.texi |  3 ++-
 2 files changed, 9 insertions(+), 6 deletions(-)

commit e1673221200c35bdacffebbcc26c2e562080a9fd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 22:40:11 2011 +0100

    Racket: ',enter "foo"' as a synonym of ',enter (file "foo")'

 doc/repl.texi                 | 25 +++++++++++++++----------
 elisp/geiser-racket.el        |  4 ++--
 scheme/racket/geiser/user.rkt |  3 ++-
 3 files changed, 19 insertions(+), 13 deletions(-)

commit 8d8d07981ebb0d7c605ed4efa3e6fe16a4fd8894
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 17:53:29 2011 +0100

    README updates

 README | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit a6570238dae92bbd9e9a66ea3d148d1db259bd55
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 17:47:24 2011 +0100

    NEWS update

 NEWS | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

commit d4e243581e6e00be43ddfd829d4a960f1dfb4c2f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 17:37:59 2011 +0100

    Texinfo macrology

 doc/geiser.css   |  4 ++++
 doc/install.texi | 11 ++++++-----
 doc/macros.texi  | 18 ++++++++++++++++++
 doc/web.texi     |  8 +-------
 4 files changed, 29 insertions(+), 12 deletions(-)

commit 87340e7700af9a24441bc5c6047a92b85f5c7bb8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 16:49:40 2011 +0100

    Docs: better rendering of links in info

 doc/install.texi | 22 +++++++++++++---------
 doc/macros.texi  | 32 ++++++++++++++++++++++++++------
 doc/parens.texi  | 40 ++++++++++++++++++++++++----------------
 doc/repl.texi    | 31 ++++++++++++++++++-------------
 4 files changed, 81 insertions(+), 44 deletions(-)

commit 5f50bcd86d436a598bf9d61f5bcfd7f985338d01
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 02:16:02 2011 +0100

    Doc nit

 doc/repl.texi | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 9c3c0202f536b67ae83ef974fa4c743fb888b29b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 02:12:43 2011 +0100

    Docs: community links added

 doc/thanks.texi | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

commit 0fae4e8805e68565a6d4ca26c07b4cdff6a971cf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 01:38:22 2011 +0100

    Docstring typos
    
    Mark, again.

 elisp/geiser-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 642cdfd59c66c29d35cf302e3e2fb0137fa062ed
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 01:36:41 2011 +0100

    Guile nit

 scheme/guile/geiser/emacs.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 7c74bab99cfb5a51ed435853fe09e46407c7b3bf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 9 00:06:46 2011 +0100

    Autodoc mode (de)activation fix.
    
    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))

 elisp/geiser-autodoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 963b9d4214a04f2d1c13230d5e69f3e422819d99
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 8 22:20:23 2011 +0100

    Info formatting (whitespace around code blocks)

 doc/install.texi | 20 ++++++++++++++++++--
 doc/parens.texi  | 30 +++++++++++++++++++++---------
 doc/repl.texi    |  4 ++++
 3 files changed, 43 insertions(+), 11 deletions(-)

commit e2710ee3d9ccffebe67f9a1b16fb7cf88a789655
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jan 8 13:26:03 2011 +0100

    Docs: two spaces after period in texinfo sources.
    
    Thanks to MH, who did all the heavy lifting.

 doc/cheat.texi   |   2 +-
 doc/install.texi |  40 ++++++++--------
 doc/intro.texi   |  16 +++----
 doc/parens.texi  | 164 +++++++++++++++++++++++++++++++--------------------------------
 doc/repl.texi    | 132 +++++++++++++++++++++++++-------------------------
 doc/thanks.texi  |   2 +-
 doc/top.texi     |   8 ++--
 7 files changed, 182 insertions(+), 182 deletions(-)

commit 7ba4e724f79ed7cc307b1337412be61eead5daa9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 19:43:12 2011 +0100

    Docs: cheat sheet corrections

 doc/cheat.texi | 111 +++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 56 insertions(+), 55 deletions(-)

commit 425e29e070c0860aec004296e050b92cb9250b89
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 19:42:51 2011 +0100

    REPL: M-TAB bound to completion-at-point
    
    TAB already does all the other stuff.

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 439c043037f5846e18f42893cab09b9e66109e12
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 19:04:18 2011 +0100

    Yet another doc nit

 doc/repl.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 68abcf73367753b5b412d9d377f1840c412dffd5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 18:59:18 2011 +0100

    Doc nit

 doc/parens.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e7c4ef3400f3227737b1445f7fe1bf4884b1c55d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 18:56:16 2011 +0100

    Documentation typos (thanks to Mark Harig)

 doc/cheat.texi   |  6 +++---
 doc/install.texi |  4 ++--
 doc/intro.texi   | 12 ++++++------
 doc/parens.texi  | 54 +++++++++++++++++++++++++++---------------------------
 doc/repl.texi    | 27 ++++++++++++++-------------
 5 files changed, 52 insertions(+), 51 deletions(-)

commit 2ca4ad6e1385e2ea21f05f6760db0e0ff5cca4c3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jan 7 14:14:31 2011 +0100

    REPL: fix for history navigation
    
    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.

 elisp/geiser-repl.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 7342870bfce4071673936597559ae60ffcba03b2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 3 01:45:13 2011 +0100

    Really avoiding *spurious* buffers
    
    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.

 elisp/geiser-connection.el | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

commit 95af5d35139f8d8825dcfa2381a5bc16d46e0043
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 2 21:03:00 2011 +0100

    More robust symbol reading (instead of specializing for quack)
    
    Let's use the scheme reader instead of half-assed regular expressions
    and special-casing.

 elisp/geiser-syntax.el | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

commit 31215149401ca11ca6365109411206e25b6a3b6d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 2 20:38:25 2011 +0100

    More quackisms

 elisp/geiser-syntax.el | 2 ++
 1 file changed, 2 insertions(+)

commit f275952d107ea4553a45fefefed51d74b2d94183
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 2 19:58:16 2011 +0100

    Fix for quack users
    
    Apparently, quack makes (thing-at-point 'symbol) to return "#" when
    point is looking at a hash symbol, causing havoc to geiser. This patch
    defends us about this behaviour.

 elisp/geiser-syntax.el | 1 +
 1 file changed, 1 insertion(+)

commit 4826d33808c8c54bbe455639c942fc3f789383c0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Dec 30 15:58:13 2010 +0100

    A bit of documentation

 doc/parens.texi | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit d2601ace1339835acd542e2fa03d214b38c1f663
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Dec 30 15:44:09 2010 +0100

    New command: "manual" autodoc (C-c C-d s)

 doc/cheat.texi          |  8 ++++++++
 doc/parens.texi         |  5 ++++-
 elisp/geiser-autodoc.el | 13 ++++++++++---
 elisp/geiser-mode.el    |  2 ++
 4 files changed, 24 insertions(+), 4 deletions(-)

commit b355f7fb31d19ac680eef38005035a95414a2612
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Dec 30 13:57:17 2010 +0100

    Autodoc nit

 elisp/geiser-autodoc.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8982bb6bb2afce626cd60533cb582ae88259a402
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 16:25:52 2010 +0100

    Leaner autodoc cache
    
    We cannot consistently maintain a local cache, because of
    re-evaluations of external symbols will go unnoticed. The new strategy
    (remembering only the latest signatures) mostly works, although it
    introduces a bit of extra flickering every now and then.
    
    A global cache is perhaps worth considering.

 elisp/geiser-autodoc.el | 44 ++++++++++++++++----------------------------
 elisp/geiser-compile.el |  2 +-
 2 files changed, 17 insertions(+), 29 deletions(-)

commit 466b8f71a7d6375f55b2806fb949a91d774147c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 15:48:41 2010 +0100

    Less noisy autodoc mode activation
    
    Only display an activation message when called interactively.

 elisp/geiser-autodoc.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ab63255f7dbb1a4eed6f00d5c08309b169a166f3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 04:19:09 2010 +0100

    Bug fix for postfix error message display in debug buffer
    
    The message and the evaluated expression where getting mixed for Guile.

 elisp/geiser-debug.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit fe8de4b31e916c1f1883826cade2c8dc310afe48
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 04:11:46 2010 +0100

    Finer grained maintenance of autodoc's cache

 elisp/geiser-autodoc.el | 11 +++++++++--
 elisp/geiser-compile.el |  2 +-
 elisp/geiser-debug.el   |  7 +++++--
 elisp/geiser-syntax.el  |  3 ++-
 4 files changed, 17 insertions(+), 6 deletions(-)

commit 2a582ee40aa77ff4d05baef3e2ea4449615cd93f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 03:39:28 2010 +0100

    Avoiding autodoc interfering with an active minibuffer
    
    A piece of eldoc advice shamelessly lifted from slime.

 elisp/geiser-autodoc.el | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit ef55123a1cb33f0d8e555060d66f508db51122f2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 03:29:13 2010 +0100

    Wee refactoring

 elisp/geiser-autodoc.el | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

commit d05e8e0e2323a654e8e8f81214750b2819fcbc8e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 03:18:00 2010 +0100

    First stab at asynchronous autodoc retrieval

 elisp/geiser-autodoc.el | 53 ++++++++++++++++++++++++++---------------------------
 elisp/geiser-company.el |  2 +-
 elisp/geiser-eval.el    |  6 ++++++
 3 files changed, 33 insertions(+), 28 deletions(-)

commit f0e5d02619ead5688f051f14030cb700323e6c17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 03:16:52 2010 +0100

    Bug fix: autodoc was skipping some identifiers
    
    Namely, those with non-letters in their name, because we were using
    "%S" instead of "%s" to stringify uninterned symbols.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c356f882c7cb084e8abddc50404d9a0675bb477
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 01:36:27 2010 +0100

    Bug fix: properly enqueue requests
    
    I've observed that autodoc requests in connections to tekuti processes
    often miss their deadline. This was causing serialization problems,
    fixed (i think) by this patch; but we still have the problem of too
    many misses, which could be fixed by making autodoc asynchronous (and
    we probably need this for really remote connections anyway).

 elisp/geiser-connection.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 97cbd01379a9f337433e48292566e942c6e1973c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 28 01:33:56 2010 +0100

    Web page: version in main page

 doc/geiser.css |  6 ++++--
 doc/web.texi   | 11 ++++++-----
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 9a75286b505a7be1cfbc54ba0d70c54e8457e527
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 21 16:15:16 2010 +0100

    Documentation helpers

 doc/geiser.css   | 10 +++++++++-
 doc/install.texi |  5 ++---
 doc/intro.texi   |  2 +-
 doc/macros.texi  |  1 +
 doc/web.texi     |  6 ++++++
 5 files changed, 19 insertions(+), 5 deletions(-)

commit a700f8280f05155a1a45463d5cf0aab762035ba3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 20 04:15:58 2010 +0100

    Documentation tidbits

 doc/install.texi | 19 ++++++++++---------
 doc/macros.texi  |  5 +++++
 2 files changed, 15 insertions(+), 9 deletions(-)

commit 01fdd0cad6ecfc2eecd81a5999767e1583999207
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 20 03:28:01 2010 +0100

    Version bump: let the fun begin!

 configure.ac     | 2 +-
 doc/install.texi | 2 +-
 doc/macros.texi  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit c82a944025ee08280dc507004ab98435f184cc23
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 20 03:08:06 2010 +0100

    Nits and release tag

 doc/install.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c826eb2e462ed8d2ab2ae8be5050d79e478db796
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 20 01:21:34 2010 +0100

    Latest updates before 0.1

 NEWS             |  4 ++++
 doc/Makefile.am  |  1 -
 doc/install.texi | 55 ++++++++++++++++++++++++++++++++++++-------------------
 doc/macros.texi  |  2 ++
 4 files changed, 42 insertions(+), 20 deletions(-)

commit ea2af4ac14c3351094377bc06f41232de9a6fb94
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 18 16:02:46 2010 +0100

    Missing autoload for connect-to-racket
    
    Maybe i should bite the bullet and use ##autoload cookies, but then
    geiser.el would need to be a generated file, breaking
    out-of-the-boxness (unless i update it by hand). Sticking to manual
    maintenance for now.

 elisp/geiser.el | 3 +++
 1 file changed, 3 insertions(+)

commit c369a98132d38affe0bee659f33181db694c9e52
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 18 04:45:38 2010 +0100

    Docs: clarification about quack
    
    Greg Hendershott tells me that, unless you require quack after loading
    geiser, quack's font lock is somehow ignored. I have yet to understand
    why.

 doc/install.texi | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit ee5a005c6ea72219b7ceec510214543a48e8026d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 18 04:21:16 2010 +0100

    Docs nit

 doc/install.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4b7a1b2afe0630e5b4c02f6cbe23bee53aa62eb9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Dec 15 19:18:04 2010 +0100

    A quack compatibility bit
    
    If quack-mode is active, we leave additional font locking to it.

 elisp/geiser-syntax.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 176b84f5aedc1bb23d91337b10570981e9af7545
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 14 23:21:23 2010 +0100

    Debugging aids
    
    A couple functions to manage logs, and a fix to the definition of
    geiser-messages-mode: do not ever kill all local variables in a
    derived mode definition!

 elisp/geiser-log.el | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

commit 8cac1fd62779f6552ce4e5ac5d8f9a886526420d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Dec 14 22:57:18 2010 +0100

    No more vicious error circle on tq errors
    
    I've eliminated the annoying *spurious* popup produced by tq, so that
    Geiser can recover from error conditions arising from unexpected
    input to a transaction queue that has no active transaction. We now
    log the offending input and keep going.
    
    Greg, over at racket's list, reported such a happening when leaving
    the REPL after C-u C-c C-z; but i've been unable to reproduce the
    problem. Probably, we have a bug lurking somewhere that this patch
    doesn't fix, but at least it should work as a palliative.

 elisp/geiser-connection.el | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

commit 41f4dcc669f809dd3a73f78b81f50f780f152aeb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 11 04:24:14 2010 +0100

    Documentation bit

 doc/cheat.texi | 3 +++
 1 file changed, 3 insertions(+)

commit dfe2b83ff6eb51cbaf134b5cdfc1e416c1541b8b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 11 04:05:57 2010 +0100

    Documentation updates, and a shiny new image

 doc/img/docstring-racket.png | Bin 0 -> 12733 bytes
 doc/img/docstring.png        | Bin 16390 -> 16361 bytes
 doc/parens.texi              |  11 ++++++++---
 3 files changed, 8 insertions(+), 3 deletions(-)
 create mode 100644 doc/img/docstring-racket.png

commit 4a156187b4918e934c30ea2403d8dcb57cfcc720
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 11 03:03:00 2010 +0100

    Make the position of long expressions in debug buffer customizable
    
    This is Emacs, after all.

 elisp/geiser-debug.el | 35 +++++++++++++++++++++++++++++++----
 elisp/geiser.el       |  1 +
 2 files changed, 32 insertions(+), 4 deletions(-)

commit 45dbc624fcb57134c02db510a7f3ba50b09f4d88
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 11 02:47:56 2010 +0100

    Print long expressions after errors in debug buffer.
    
    You won't believe it, but people write procedures spanning several
    pages, even in Scheme. Where's the art and the poetry of programming?

 elisp/geiser-debug.el | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit d655282cc2bb6146782cb5c8ea3dafdccaeecef9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Dec 6 22:03:57 2010 +0100

    We need Emacs 23.2 at least
    
    The new completion machinery Geiser uses was introduced there.

 README           | 8 +++++---
 doc/install.texi | 2 +-
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 21e65eb32c09d8524ec61b12a70a4f7f1379eedf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 29 02:06:46 2010 +0100

    Locals scanning: support for let-values and let*-values
    
    ... and i haven't yet refactored `geiser-syntax--scan-locals', oh my.

 elisp/geiser-syntax.el | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

commit e4f87fdc18d4aef2c4e7c3602ac3975f2140fae1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 29 01:42:37 2010 +0100

    Fixes for locals scanning
    
    ... using the new non-interning reader. Plus scanning for case-lambda
    and syntax-rules. `geiser-syntax--scan-locals' is in danger of
    refactoring, specially if we add support for let-values.

 elisp/geiser-completion.el |  6 ++--
 elisp/geiser-racket.el     | 20 +++++++------
 elisp/geiser-syntax.el     | 83 +++++++++++++++++++++++++++++++++++++-----------------
 3 files changed, 70 insertions(+), 39 deletions(-)

commit d70e9de59cfeae4fa8e76a48dbfe80e9d25e0d7c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 28 16:09:03 2010 +0100

    Autodoc's argument display fixed
    
    It was relying on symbol equality, and not dealing correctly with
    keyword arguments in this new external world. In the process, some
    cleanups to the scheme data display code.

 elisp/geiser-autodoc.el | 25 +++++++++----------------
 elisp/geiser-syntax.el  | 25 +++++++++++++++++++++++++
 2 files changed, 34 insertions(+), 16 deletions(-)

commit e61a8e7c9068fab436b657ed42c1df2f73a8b6f3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 28 16:07:42 2010 +0100

    Avoiding keyword internalisation
    
    We were still internalizing scheme _keywords_ in the elisp reader.

 elisp/geiser-syntax.el | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

commit 02be05e46fe1499e758e14a821a3e809647f8989
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 28 16:05:26 2010 +0100

    Doc browser nit

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 690a60c33834fb1a615a0ceb4dead08713612776
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 28 02:56:31 2010 +0100

    Racket: #lang, require and provide as keywords
    
    Those seem keywordish enough to deserve fontification.

 elisp/geiser-racket.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit 1e312c9d83a3a9c4bd7c4bf5cfd4b1802cc0aada
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 27 01:51:21 2010 +0100

    Fix for xref sorting by module
    
    Since, you know, module names are now uninterned symbols.

 elisp/geiser-xref.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b39fd77d8899bc7ff6608645afc9e2eb0eb0d33c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 27 00:54:59 2010 +0100

    No more interning in the scheme reader
    
    We avoid using elisp's read for symbols, reading uninterned ones
    instead. And then, we cannot use symbols as keys in responses from
    scheme: we're using strings instead.

 elisp/geiser-autodoc.el            | 14 +++++++-------
 elisp/geiser-doc.el                | 16 ++++++++--------
 elisp/geiser-edit.el               | 10 +++++-----
 elisp/geiser-syntax.el             |  9 +++++++--
 elisp/geiser-xref.el               | 16 ++++++++--------
 scheme/guile/geiser/doc.scm        | 29 ++++++++++++++---------------
 scheme/guile/geiser/utils.scm      |  4 ++--
 scheme/guile/geiser/xref.scm       |  8 +++-----
 scheme/racket/geiser/autodoc.rkt   | 36 ++++++++++++++++++------------------
 scheme/racket/geiser/locations.rkt |  6 +++---
 10 files changed, 75 insertions(+), 73 deletions(-)

commit 96610db57a61d5380eeeb3b4780846c39fb79422
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 23:11:47 2010 +0100

    A couple of uses of intern replaced by make-symbol
    
    These ones seem safe: the resulting symbol is not compared for
    equality anywhere.

 elisp/geiser-company.el | 4 ++--
 elisp/geiser-racket.el  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit 88c56a06fd1d006f1d41dfce16c89da79e03bb5b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 23:05:34 2010 +0100

    Autodoc not interning symbols
    
    We avoid calling symbol-at-point, and keep the cached signatures with
    strings as keys.

 elisp/geiser-autodoc.el | 19 +++++++++++--------
 elisp/geiser-syntax.el  | 14 +++++++++-----
 2 files changed, 20 insertions(+), 13 deletions(-)

commit 775b81c9be65b71a1d3090d5b80398a82ffc54f2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 21:52:31 2010 +0100

    Remove unnecessary calls to symbol-at-point
    
    ... which interns the symbol in the global obarray: rather unfriendly.
    We still need to remove a few calls to that beast, and avoid intern in
    the scheme reader.

 elisp/geiser-base.el       |  4 ++++
 elisp/geiser-completion.el |  2 +-
 elisp/geiser-doc.el        | 10 +++++-----
 elisp/geiser-edit.el       |  2 +-
 elisp/geiser-mode.el       | 12 +++++++-----
 elisp/geiser-repl.el       | 10 +++++-----
 elisp/geiser-xref.el       |  4 ++--
 7 files changed, 25 insertions(+), 19 deletions(-)

commit 0233627d20dd483745c8386b2eb5ff26b355f854
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 16:12:24 2010 +0100

    Doc browser: better link highlighting
    
    We were adding extra spaces to function signatures.

 elisp/geiser-autodoc.el |  5 +++--
 elisp/geiser-doc.el     | 19 +++++++++----------
 2 files changed, 12 insertions(+), 12 deletions(-)

commit 931c38b796dd90897c7039aa7a9afde70131dbb8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 16:11:45 2010 +0100

    Nit

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 18250d15e5f80deca6d6db10c8deda7b58efa0ba
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 15:19:49 2010 +0100

    Revert "Bug fix: don't intern symbols read by scheme reader"
    
    This reverts commit 801422d1558f488059ede4f9abab5163ca610900.
    We cannot blindly substitute make-symbol for intern in the scheme
    reader, because we rely on symbol equality elsewhere, often. The fix
    will have to be much more careful.

 elisp/geiser-base.el    | 1 +
 elisp/geiser-company.el | 4 ++--
 elisp/geiser-guile.el   | 3 +--
 elisp/geiser-impl.el    | 4 ++--
 elisp/geiser-racket.el  | 2 +-
 elisp/geiser-syntax.el  | 4 ++--
 6 files changed, 9 insertions(+), 9 deletions(-)

commit 801422d1558f488059ede4f9abab5163ca610900
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 14:45:00 2010 +0100

    Bug fix: don't intern symbols read by scheme reader
    
    We were calling `intern' instead of `make-symbol', polluting emacs'
    obarray.

 elisp/geiser-base.el    | 1 -
 elisp/geiser-company.el | 4 ++--
 elisp/geiser-guile.el   | 3 ++-
 elisp/geiser-impl.el    | 4 ++--
 elisp/geiser-racket.el  | 2 +-
 elisp/geiser-syntax.el  | 4 ++--
 6 files changed, 9 insertions(+), 9 deletions(-)

commit f661d7c70bd04542d8bbb4da9c9f70b6d6c95791
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 26 02:29:25 2010 +0100

    Racket: more information in symbol documentation
    
    When the symbol is imported and re-exported by a second module, we
    display its definition name and original module, besides the name of
    the module re-exporting it.

 elisp/geiser-doc.el              |  6 ++---
 elisp/geiser-racket.el           |  2 +-
 scheme/racket/geiser/autodoc.rkt | 58 +++++++++++++++++++++++++++++++++++++++---------
 scheme/racket/geiser/modules.rkt |  7 ++++++
 4 files changed, 59 insertions(+), 14 deletions(-)

commit 59e53577aff12df02f437b95f46dc2951157eb10
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 23:25:20 2010 +0100

    Bug fix: unbreaking the doc browser

 elisp/geiser-doc.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit d1535ee213ed9dc98a0d0897dc5525d70f4318c5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 22:47:30 2010 +0100

    Link to symbol's module in doc browser
    
    But i should really refactor this: module and value are (or can be)
    already available in the response coming from Scheme.

 elisp/geiser-doc.el | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit d2e44120a83f55e98598bd8d2c7e10f577b97324
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 21:01:19 2010 +0100

    Tidier titles for doc browser
    
    Just justifying and indenting them.

 elisp/geiser-doc.el | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit 56db9f728629e0859cafa34b53d8a16f34eeef01
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 18:52:25 2010 +0100

    Completion: a bit of documentation

 doc/parens.texi | 21 ++++++++++++++++-----
 doc/repl.texi   |  2 +-
 2 files changed, 17 insertions(+), 6 deletions(-)

commit ca4761af930caef19427863af75b576ce611d2e4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 18:26:07 2010 +0100

    Completion: respecting tab-always-indent
    
    ... and actually using it to implement geiser-smart-tab-mode. Always
    nice to un-reinvent-the-wheel.

 elisp/geiser-completion.el | 26 +++++++++-----------------
 elisp/geiser-mode.el       |  3 ++-
 elisp/geiser-repl.el       |  5 ++++-
 3 files changed, 15 insertions(+), 19 deletions(-)

commit 310f00bbea4b70a25bd0e7d2337a589433f14b31
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 04:28:02 2010 +0100

    First stab at using Emacs' standard completion mechanism
    
    Besides removing code i didn't understand that well, we bring in
    goodies such as  partial completion. Jolly.

 elisp/geiser-company.el    |   2 +-
 elisp/geiser-completion.el | 186 +++++++++++++----------------------------------------
 2 files changed, 45 insertions(+), 143 deletions(-)

commit acffa001cd9effa4a74261ac9b72e736b9b61937
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 01:30:48 2010 +0100

    Guile: fixes for documentation display
    
    We put the value of the identifier where it belongs, and add a missing
    period. Works, but geiser/doc.scm is in sore need of a refactoring.

 scheme/guile/geiser/doc.scm | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

commit 1417c2bc5090c362d341dc2e77a2623b56ea9753
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 01:29:06 2010 +0100

    Guile: fix for connect-to-guile problems
    
    Was a real bug, after all, and quite reproducible. Sending an ,use
    metacommand was not returning a prompt, and we were waiting for ever
    to start (or almost). Now, connect-to-guile is not only right, but
    spiffy again.

 elisp/geiser-guile.el | 20 +++++++++-----------
 elisp/geiser-repl.el  |  4 ----
 2 files changed, 9 insertions(+), 15 deletions(-)

commit 094ecfb5c755b5f92ae993b685efdf98191b00c1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 25 00:04:11 2010 +0100

    Guile: logging initialisation process
    
    Today, W was seeing errors when connecting to Guile, which of course
    immediately disappeared when we tried to reproduce them and get some
    logs. I'm logging Guile's initialisation unconditionally, to make sure
    the problem doesn't repeat. Much easier than fixing the bug.

 elisp/geiser-guile.el | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit 62d88632a400367ea117f2b2d8d734c3c391b703
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 24 23:46:33 2010 +0100

    Doc browser: help echo for buttons

 elisp/geiser-doc.el | 31 +++++++++++++++++++++----------
 1 file changed, 21 insertions(+), 10 deletions(-)

commit d9e03e068d621cd8252ec15765d058be3ccd5f9d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Nov 24 02:14:11 2010 +0100

    Guile: button for texinfo lookup in doc browser

 elisp/geiser-doc.el   | 13 +++++++++----
 elisp/geiser-guile.el | 28 +++++++++++++++++++++++++++-
 2 files changed, 36 insertions(+), 5 deletions(-)

commit 992649e9e6f977943cbae191e3bc057a0393e7ad
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 23 02:15:14 2010 +0100

    Lookup is a name, look up, a verb

 README               | 1 +
 doc/cheat.texi       | 4 ++--
 doc/parens.texi      | 2 +-
 elisp/geiser-doc.el  | 4 ++--
 elisp/geiser-mode.el | 2 +-
 5 files changed, 7 insertions(+), 6 deletions(-)

commit 3b24e917fdfebc8df3fefbbcc747963eb4bbd126
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 23 01:58:33 2010 +0100

    Document browser improvements, and Racket using them
    
    We have a new "manual lookup" command, and Racket now displays a doc
    browser buffer for help with a button activating it. In the process,
    we've cleaned-up a little mess in geiser-eval.el and geiser-doc.el,
    and refactored the affected Racket modules.
    
    Next in line is providing manual lookup for Guile.

 doc/cheat.texi                     |   3 +
 doc/img/geiser-mode.png            | Bin 62445 -> 37636 bytes
 doc/img/repl-mod.png               | Bin 29938 -> 30503 bytes
 doc/parens.texi                    |  33 ++++++---
 doc/repl.texi                      |  40 +++++------
 elisp/geiser-completion.el         |  11 +--
 elisp/geiser-doc.el                | 168 ++++++++++++++++++++++++++-------------------
 elisp/geiser-eval.el               |  20 +++---
 elisp/geiser-mode.el               |   2 +
 elisp/geiser-racket.el             |   2 +-
 scheme/guile/geiser/evaluation.scm |   2 -
 scheme/racket/geiser/autodoc.rkt   |  75 +++++++++++++-------
 scheme/racket/geiser/locations.rkt |  11 ++-
 scheme/racket/geiser/main.rkt      |   2 +
 scheme/racket/geiser/modules.rkt   |  21 +++++-
 15 files changed, 243 insertions(+), 147 deletions(-)

commit a53249b83cdc0711f23b1b8860cd3582977230c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 22 04:22:45 2010 +0100

    Fix for geiser-smart-tab-mode

 elisp/geiser-completion.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 39042ae7410842439430133d42207cc0b45b154d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 22 03:34:45 2010 +0100

    Fix for compiled Geiser
    
    geiser-repl was missing a (require 'geiser-doc) that was making things
    go pretty awry for compiled geiser on os x (emacs 23.2.20), but
    nowhere else, for reasons that escape me.
    
    Issue was, the popup buffer macros were not seen. Go figure.

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit 52c02593734d33d439815f90f118e954367a2d81
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 22 00:46:28 2010 +0100

    Fix for error in Guile initialisation

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a13ecebab407cf7c7a2e3938a1a1f2c436208a2e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 19:01:36 2010 +0100

    Doc browser: section navigation cmmands
    
    Details, details.

 README              | 32 ++++++++++++++++++--------------
 doc/cheat.texi      | 17 ++++++++++++-----
 elisp/geiser-doc.el | 44 +++++++++++++++++++++++++++++++-------------
 3 files changed, 61 insertions(+), 32 deletions(-)

commit 80bc0ec73440eb060646d0e511e60a269ca0ee7e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 17:34:21 2010 +0100

    Nits

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d1404867c6a335e8f4469ee12500e9fefb0dad3e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 16:57:55 2010 +0100

    CLisms removed

 elisp/geiser-autodoc.el    | 2 +-
 elisp/geiser-completion.el | 4 ++--
 elisp/geiser-doc.el        | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

commit f531c3e0f5afda77ada497d3932ea10502e22bdb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 16:12:41 2010 +0100

    Racket: showing submodules in module help

 elisp/geiser-racket.el                           |  7 ++--
 scheme/Makefile.am                               |  2 +-
 scheme/racket/geiser/autodoc.rkt                 |  5 ++-
 scheme/racket/geiser/completions.rkt             |  2 -
 scheme/racket/geiser/modules.rkt                 | 71 +++++++++++++++++++++++++-------
 scheme/racket/{geiser.rkt => geiser/startup.rkt} |  2 +-
 scheme/racket/geiser/user.rkt                    |  4 +-
 7 files changed, 66 insertions(+), 27 deletions(-)
 rename scheme/racket/{geiser.rkt => geiser/startup.rkt} (95%)

commit de6b4addba49abbb43f07c8e153356308bcd8709
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 07:48:22 2010 +0100

    Did i mention that getting autodoc right is hard?

 elisp/geiser-autodoc.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 398cdbed93912ee863f111eb7048a252d232391c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 05:30:34 2010 +0100

    Even better message on completion failure

 elisp/geiser-completion.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 629f38d05e35faba3655936c68500785dba148a2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 05:25:37 2010 +0100

    Better message on completion failure
    
    Tell people that we're trying to complete, sometimes, on two different
    prefixes.

 elisp/geiser-completion.el | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

commit eefc4cddbc303b6de38b9b0d80ac591e6282fd5c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 05:24:36 2010 +0100

    Correct display of "..." in autodoc
    
    It'd be interesting to check what percentage of commits are related to
    autodoc...

 elisp/geiser-autodoc.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 8ebfa570ad6a722a831c53a0229464055bf227c3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 03:50:41 2010 +0100

    Racket: slightly better handling of the signatures cache
    
    Refreshing the cache on form evaluation (had been deactivated by error
    since the introduction of meta-commands). The current behaviour is not
    yet completely correct: if one evaluates a form in a modified buffer,
    geiser won't notice the new definition's signature, not even after the
    buffer is saved if one has gone around asking for autodoc before that.
    
    An improvement would be to make the cache sensitive to file write
    times, as suggested back in the day by Eli & Neil.

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b437f54ca8154356f8f576f14f4c167f7f1fa8ff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 02:30:04 2010 +0100

    Even better, as in 'correct',  display of autodoc args
    
    We're being a bit silly here, first converting the autodoc retort
    string to an elisp value and then reconverting the arguments again to
    a string with scheme syntax. We should probably do this at
    geiser-syntax's parser level, with a special mode producing stringy
    representations of tokens. Don't tell anyone.

 elisp/geiser-autodoc.el | 17 ++++++++++++-----
 elisp/geiser-doc.el     |  4 ++--
 2 files changed, 14 insertions(+), 7 deletions(-)

commit 1710566476f5230d95e43cdceeab3487df76b69e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 02:00:34 2010 +0100

    Bug fix: (symbol-at-point) thinks that '.' is a symbol
    
    And, as a consequence, we were sending broken sexps to poor schemes.

 elisp/geiser-syntax.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 1d725a8c087b66b2cd2c0e5006c376faf612d6ff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 21 01:56:02 2010 +0100

    Better module help
    
    We now display procedure signatures in module help, and keep a cache
    in Guile, using procedure properties.

 doc/img/repl-mod.png             | Bin 17604 -> 29938 bytes
 elisp/geiser-doc.el              |  32 ++++++++++++++---------
 scheme/guile/geiser/doc.scm      |  62 ++++++++++++++++++++++++++++++++++----------
 scheme/guile/geiser/modules.scm  |  34 +-----------------------
 scheme/guile/geiser/utils.scm    |   8 ++++++
 scheme/racket/geiser/autodoc.rkt |  66 +++++++++++++++++++++++++++++++++++++++--------
 scheme/racket/geiser/eval.rkt    |  12 ++-------
 scheme/racket/geiser/main.rkt    |  16 +++++++++---
 scheme/racket/geiser/modules.rkt |  35 ++-----------------------
 9 files changed, 149 insertions(+), 116 deletions(-)

commit 481f0ea2e5577ad5bb1a718b8023af92202e7423
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 19 21:13:56 2010 +0100

    Better argument display in autodoc
    
    Simpler (we don't need no square brackets) and more correct (keywords
    display as keywords and we only include default values when available
    (Guile, i'm looking at you).

 doc/img/autodoc-scm.png  | Bin 0 -> 18208 bytes
 doc/img/repl-autodoc.png | Bin 44150 -> 13953 bytes
 doc/parens.texi          |  31 ++++++++++++++++---------------
 doc/repl.texi            |   6 +++---
 elisp/geiser-autodoc.el  |  36 +++++++++++++++++++-----------------
 5 files changed, 38 insertions(+), 35 deletions(-)
 create mode 100644 doc/img/autodoc-scm.png

commit f6b03b27810e70304b89fd6185437dcf35d27b94
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 15 04:05:51 2010 +0100

    CLism removed
    
    copy-list is from cl.

 elisp/geiser-impl.el | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

commit 2cf00aa48f879c692da445b80a0dd93b4838c90d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 15 03:59:47 2010 +0100

    REPL: sexpy history file (fix for #30269)
    
    The trick consists on using a comint-input-ring-separator that is
    *not* a newline, both for reading and writing the history file.

 elisp/geiser-impl.el |  4 +++-
 elisp/geiser-repl.el | 35 ++++++++++++++++++++++++++---------
 2 files changed, 29 insertions(+), 10 deletions(-)

commit d0f026d2211905027804bcaa7c43e2c0d055322b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 23:18:40 2010 +0100

    Better geiser-implementation-help (for Geiser hackers)

 elisp/geiser-impl.el | 78 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 40 insertions(+), 38 deletions(-)

commit 61cb503bbb8d1ff42bc2656ce9c0b93d11d84ad6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 22:38:16 2010 +0100

    Documentation for define-geiser-implementation
    
    You don't really care unless you're a Geiser hacker (as opposed to a
    hacker using Geiser), or wanna become one.

 elisp/geiser-impl.el | 39 +++++++++++++++++++++++++++++++++++++--
 1 file changed, 37 insertions(+), 2 deletions(-)

commit 4f1d94031dd370cc77a1b4eaa484bcab159f941e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 22:36:17 2010 +0100

    Smoother REPL exit (deactivating the connection)

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit 6d64c4f1a19862d88d0429cd60f42c811e4007a6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 22:01:48 2010 +0100

    geiser-implementation-help, for Geiser hackers
    
    This interactive command will list all method needed to define a new
    Scheme implementation in Geiser, together with their callers and doc
    strings. Although i know very few additional schemes meta-dynamic
    enough to be supported by Geiser (actually, just one: scheme48), one
    never knows (there was a time when i thought that PLT Scheme wasn't in
    the list).

 elisp/geiser-impl.el | 39 ++++++++++++++++++++++++++++++++-------
 1 file changed, 32 insertions(+), 7 deletions(-)

commit e061494c211c86001f8391f331e2a9f3df0d17ae
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 20:59:26 2010 +0100

    Typo

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a07fcbb866082f533acbe89e028d05d4a3904b2a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 20:19:10 2010 +0100

    Support for implementation-specific font lock keywords
    
    Spinning up from correct fontification of [else in this brave Racket
    world.
    
    I'm keeping the list of extra keywords lean and mean, but making it
    customizable in both Racket and Guile.

 elisp/geiser-guile.el            | 15 ++++++++++++++-
 elisp/geiser-mode.el             |  4 +++-
 elisp/geiser-racket.el           | 13 +++++++++++++
 elisp/geiser-syntax.el           | 16 ++++++++++++++++
 scheme/racket/geiser/autodoc.rkt |  2 --
 scheme/racket/geiser/eval.rkt    |  2 --
 scheme/racket/geiser/user.rkt    | 10 +++++-----
 7 files changed, 51 insertions(+), 11 deletions(-)

commit 39d79b5b02bfa183715996b15e7b3ca2b87973b9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 14 20:16:46 2010 +0100

    Smoother reload
    
    Let's not wait for active connections to clear their queue when we're
    shutting down the REPL.

 elisp/geiser-connection.el | 48 +++++++++++++++++++-----------------------------
 elisp/geiser-repl.el       |  2 +-
 2 files changed, 20 insertions(+), 30 deletions(-)

commit 579bf848c75cb2f4920227c2ac2a4535eb676eca
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 13 04:40:31 2010 +0100

    completion-base-position <- completion-base-size
    
    The latter is obsolete since 23.2.

 elisp/geiser-completion.el | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 102d79f1af0aa0ec1acfa4ff30d4d9897663a4e8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 13 03:45:07 2010 +0100

    Cleanups
    
    Nothing here, move on.

 elisp/geiser-connection.el | 6 +-----
 elisp/geiser-repl.el       | 1 -
 2 files changed, 1 insertion(+), 6 deletions(-)

commit 69efb94a50ca6e8120a7a08d6ccf8216625c8519
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 13 02:31:39 2010 +0100

    geiser-mode-auto-p: automatic geiser-mode is now optional
    
    It hadn't occurred to me that anyone wouldn't want non-automatic
    geiser-mode often enough to require its own customization variable.
    Rotty proved me wrong. Or maybe not, but he deserves a custom var!

 doc/parens.texi      | 9 +++------
 elisp/geiser-mode.el | 9 +++++++++
 elisp/geiser.el      | 4 +++-
 3 files changed, 15 insertions(+), 7 deletions(-)

commit 1853b281918ea8c6e143ed1cfe1950189956d076
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 13 02:07:19 2010 +0100

    Superior schemes
    
    Inferior schemes weren't really a good idea, were they? With remote
    connections one can launch an external scheme to debug Geiser anyway.
    And everything is (ahem, will be) simpler when we add new
    implementations.

 elisp/Makefile.am             |   1 -
 elisp/geiser-guile.el         |  17 ++-----
 elisp/geiser-inf.el           |  89 ----------------------------------
 elisp/geiser-racket.el        |   4 --
 elisp/geiser-repl.el          | 129 ++++++++++++++++++++++++++++----------------------
 scheme/racket/geiser/user.rkt |   6 +--
 6 files changed, 77 insertions(+), 169 deletions(-)
 delete mode 100644 elisp/geiser-inf.el

commit 6e9d4a346b4a947259b564063c0c3186e51670e0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 23:44:17 2010 +0100

    Hiding a bit inferior scheme buffers
    
    By prefixing their name with a space... an argument against inferior
    schemes, btw, is that they raise the barrier to entry for new schemes:
    they must provide a networked REPL server.

 elisp/geiser-inf.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e070d76166d249695f1d2ee0269cc5c91537e0c9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 22:55:40 2010 +0100

    Make do with a single connection
    
    Separate connections for the REPL and Geiser commands was kind of
    neat, but it had the problem of synchronising the current namespace
    for both connections. A quick fix would have been to ask the scheme
    for the current namespace for every Geiser command in the REPL, but
    that, besides clunky, would add potentially prohibitive overhead for
    (real) remote connections.
    
    As it happens, using a single connection turned out to be not that
    difficult and relatively clean code-wise. We could even turn back to
    not use inferior schemes, and the net result of this refactoring would
    be the replacement of comint-redirect (which wasn't able to match the
    whole EOT token if it didn't arrive all at once) by transaction queues
    (which also makes geiser-connection's implementation cleaner).
    
    But using an inferior scheme has a dog-food value, and allows external
    processes to connect to the scheme being used by Geiser without
    further ado, which could be useful for debugging (although this is a
    lame excuse: nothing prevents you from starting a REPL server from
    emacs if you want). We'll see.

 elisp/geiser-connection.el         | 49 +++++++++++++++++++++++++++++-----------------
 elisp/geiser-guile.el              | 20 +++++++++++--------
 elisp/geiser-racket.el             | 14 ++++++-------
 elisp/geiser-repl.el               | 29 ++++++++++++++-------------
 scheme/guile/geiser/evaluation.scm |  1 -
 scheme/racket/geiser/eval.rkt      |  1 -
 6 files changed, 65 insertions(+), 49 deletions(-)

commit c4287cdbb796507575a71a2bfc589f0f107f436f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 15:41:06 2010 +0100

    Debugger support, and Guile using it

 elisp/geiser-connection.el | 15 ++++++++++-----
 elisp/geiser-guile.el      |  7 ++++---
 elisp/geiser-repl.el       |  8 ++++++++
 3 files changed, 22 insertions(+), 8 deletions(-)

commit e13172c2855cc7fcb30c6dac231210c6e8534b18
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 02:20:14 2010 +0100

    Better EOT token for more robust communication

 elisp/geiser-connection.el         | 10 +++++-----
 elisp/geiser-guile.el              |  4 ++--
 elisp/geiser-repl.el               |  5 ++++-
 scheme/guile/geiser/evaluation.scm |  1 +
 scheme/racket/geiser/eval.rkt      |  3 ++-
 5 files changed, 14 insertions(+), 9 deletions(-)

commit dc8155b5d0e5c533a1fc6cb64399e8cccd7c1716
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 01:33:09 2010 +0100

    Guile reconnected (but not debuggable (yet))
    
    Or the importance of EOL. Switching to a transaction queue for
    communication with the Scheme process means that i had to care about
    sending eols in the queries... Guile was waiting for ever reading a
    metacommand taking a variable number of arguments. Argh: this has
    taken me a few hours -- i'm getting old.

 elisp/geiser-guile.el              | 37 +++++++++++++++++++++++--------------
 elisp/geiser-racket.el             |  1 -
 elisp/geiser-repl.el               |  6 +++---
 scheme/guile/geiser/emacs.scm      | 23 +++++++++++++++++------
 scheme/guile/geiser/evaluation.scm | 18 ++++--------------
 5 files changed, 47 insertions(+), 38 deletions(-)

commit 24fe735860a68542bb569bb59c712995f7bd1deb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 01:29:04 2010 +0100

    Avoiding clobbering scm-strings with properties
    
    Apparently, (format "%s" sym) for a symbol read from a buffer where
    it's fontified, produces a string with the same fontification. Go
    figure.

 elisp/geiser-eval.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit b98b2cea6ca2a5b244bbb4270d1144e483e54455
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 12 01:27:22 2010 +0100

    Nits

 bin/geiser-racket.sh       |  2 +-
 elisp/geiser-connection.el | 25 ++++++++++++-------------
 elisp/geiser-inf.el        |  2 +-
 elisp/geiser-racket.el     |  4 ++--
 4 files changed, 16 insertions(+), 17 deletions(-)

commit 70cfa5b379e90e6899c7e1a210a5c468dc578479
Merge: 8d1e1c4 5a7c055
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 11 16:28:52 2010 +0100

    Merge branch 'guile-meta' into meta-reconnection

commit 8d1e1c47563131cd0f52f0cc02fa0b23eebd2227
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 11 16:27:01 2010 +0100

    Racket reconnected

 bin/geiser-racket.sh            |  6 ++---
 elisp/geiser-inf.el             | 24 ++++++++++++--------
 elisp/geiser-repl.el            | 50 ++++++++++++++++++++++++++++-------------
 scheme/racket/geiser.rkt        |  4 +---
 scheme/racket/geiser/server.rkt | 12 ++--------
 scheme/racket/geiser/user.rkt   | 59 ++++++++++++++++++++++++++++++++++++++-----------
 6 files changed, 102 insertions(+), 53 deletions(-)

commit d773c05503659047f35878bd745568ce04078148
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 11 03:31:15 2010 +0100

    Elisp support for inferior schemes

 elisp/geiser-guile.el  |  1 -
 elisp/geiser-inf.el    |  2 +-
 elisp/geiser-racket.el |  3 +++
 elisp/geiser-repl.el   | 37 +++++++++++++++++++++++--------------
 4 files changed, 27 insertions(+), 16 deletions(-)

commit dfc900c0e2f59edfb06bbdabfc4bcde172d6ced9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 11 03:01:33 2010 +0100

    Partial work (connections working)

 doc/cheat.texi                |   3 -
 doc/repl.texi                 |  13 +-
 elisp/Makefile.am             |   1 +
 elisp/geiser-connection.el    | 274 +++++++++++++++-------------------------
 elisp/geiser-eval.el          |  10 +-
 elisp/geiser-inf.el           |  83 +++++++++++++
 elisp/geiser-log.el           |   1 -
 elisp/geiser-racket.el        |   1 -
 elisp/geiser-reload.el        |   1 +
 elisp/geiser-repl.el          | 338 +++++++++++++++++++++++---------------------------
 scheme/racket/geiser/user.rkt |   8 +-
 11 files changed, 347 insertions(+), 386 deletions(-)
 create mode 100644 elisp/geiser-inf.el

commit 5a7c0553d5b60cd9475ecb33c5d65b76789757e0
Merge: 27916d2 3db4017
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 9 21:55:22 2010 +0100

    Merge branch 'master' into guile-meta

commit 3db4017f11317c497fba0e97adb5fd1a18ca4534
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 9 21:54:44 2010 +0100

    Missing racket file in scheme/Makefile.am

 scheme/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 27916d2da2e43f231daff12249b19701f5a27b4f
Merge: d830e14 f2bf4b2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 9 21:52:56 2010 +0100

    Merge branch 'master' into guile-meta
    
    Conflicts:
            elisp/geiser-guile.el

commit f2bf4b2cda05fe8c32ee74ce3b5cce743d81de61
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 9 21:35:50 2010 +0100

    Racket: remote REPLs

 .gitignore                      |  1 +
 Makefile.am                     |  2 +-
 bin/Makefile.am                 | 15 +++++++++++++
 bin/geiser-racket.sh            | 19 ++++++++++++++++
 configure.ac                    |  1 +
 doc/repl.texi                   | 60 +++++++++++++++++++++++++++++++++----------------
 elisp/geiser-connection.el      | 57 ++++++++++++++++++++--------------------------
 elisp/geiser-racket.el          | 12 ++++++++++
 scheme/racket/geiser/server.rkt | 24 ++++++++++++++++++++
 9 files changed, 138 insertions(+), 53 deletions(-)
 create mode 100644 bin/Makefile.am
 create mode 100755 bin/geiser-racket.sh
 create mode 100644 scheme/racket/geiser/server.rkt

commit 512fa06fec02b7dc8ce11684313f7a0ab56bef6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 9 02:38:49 2010 +0100

    Elisp buggettes and warnings

 elisp/geiser-connection.el | 2 +-
 elisp/geiser-guile.el      | 7 ++++---
 elisp/geiser-mode.el       | 4 ++--
 3 files changed, 7 insertions(+), 6 deletions(-)

commit 32cf1a718868d83b58b426ba7e1eeb32ea9f80b5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 06:15:51 2010 +0100

    README nit

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b6201fbf064e1f3dcbb579b54cc1d49c3b8c9493
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 06:11:15 2010 +0100

    Documentation typos

 doc/parens.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 27e21627ad8e3021d49dcbd781ff5bde97fd471b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 06:07:12 2010 +0100

    squarify again, now with numeric prefix

 doc/parens.texi      |  4 +++-
 elisp/geiser-mode.el | 35 +++++++++++++++++++++++------------
 2 files changed, 26 insertions(+), 13 deletions(-)

commit f8acd072a81821c6ebb3a8bf7e057f45243e7810
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 05:44:18 2010 +0100

    geiser-squarify to toggle between () and []

 README                        |  1 +
 doc/cheat.texi                |  3 +++
 doc/parens.texi               |  4 ++++
 elisp/geiser-mode.el          | 19 +++++++++++++++++++
 scheme/racket/geiser/user.rkt | 16 ++++++++--------
 5 files changed, 35 insertions(+), 8 deletions(-)

commit ca4e24ea7c39abb47683e68bac42807f2fe79eb0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 05:43:58 2010 +0100

    Let geiser-connect take optional host and port args

 elisp/geiser-repl.el | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

commit 73451229ea7f9ba26199851bc19aafabde900e78
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 04:39:39 2010 +0100

    Tweakings in switch-to-geiser (multiple REPLs)

 elisp/geiser-repl.el | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit 39d0ccb19d7c390f306374987219b1d599902bdc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 04:05:31 2010 +0100

    Better handling of REPL's header line

 elisp/geiser-repl.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit f04b9429de1cb815c2ad680603077be6a0d10132
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 04:00:53 2010 +0100

    Racket: fix for prompt display on ,enter

 scheme/racket/geiser/user.rkt | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit 6a197dae0735eb92f66ee98a8ca4137eac7649ee
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 03:39:36 2010 +0100

    Racket: use EOT token for internal communications

 elisp/geiser-racket.el           |  1 +
 scheme/racket/geiser/eval.rkt    | 16 ++++++----------
 scheme/racket/geiser/modules.rkt |  4 ++++
 scheme/racket/geiser/user.rkt    | 32 ++++++++++++++++++++------------
 4 files changed, 31 insertions(+), 22 deletions(-)

commit a73fdcb10bb6144d7befbc4c553102c9816e86c9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 8 03:38:44 2010 +0100

    Connection plumbing: ability to specify EOT token added

 elisp/geiser-connection.el | 91 +++++++++++++++++++++++++++++-------------------------
 elisp/geiser-eval.el       |  6 ----
 2 files changed, 49 insertions(+), 48 deletions(-)

commit 3e1ed908aa73875bda5842d6d9ce4c8b2d76bfb4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 18:41:32 2010 +0100

    Interruptible connection waiting

 elisp/geiser-connection.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e7aa01584d9b54e47855f2bcc434ab4c253126d5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 18:29:25 2010 +0100

    Better connection logs

 elisp/geiser-connection.el | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 61caa87e24a26196f529938b51d1e46373598e7f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 18:27:36 2010 +0100

    Nit

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ba17b64dfd84a313fdb631c0127de7f54218465
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 17:31:09 2010 +0100

    Pumbling cleanups

 elisp/geiser-connection.el | 118 +++++++++++++++++++++++++++--------------------------
 elisp/geiser-racket.el     |   4 +-
 elisp/geiser-repl.el       |   3 +-
 3 files changed, 64 insertions(+), 61 deletions(-)

commit 682e386ab7e2a78b64d2420d4f4c014bc86be256
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 03:40:37 2010 +0100

    Nits

 elisp/geiser-connection.el    | 9 +++++----
 scheme/racket/geiser/eval.rkt | 3 ++-
 2 files changed, 7 insertions(+), 5 deletions(-)

commit d4a74bed9729a0f737fc4f363199a54da934d8ac
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Nov 7 02:57:38 2010 +0100

    Completion: not completing the empty string

 elisp/geiser-completion.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit bf929cd8408277dab16d7fa1a2bc9fd5ba8559e2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 23:18:51 2010 +0100

    Completion: falling back to module name completion for real

 elisp/geiser-completion.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 4146821a9d3256ae33ce035269bc0358c4e51d80
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 22:56:48 2010 +0100

    Doc fix

 doc/parens.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ce1f3543d0339813f85677178b8dcd06953fd2e9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 22:19:07 2010 +0100

    REPL: remembering last connection address

 elisp/geiser-repl.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 2aad392f96e8fdf6040c3761171045e25fb0a8c9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 21:42:09 2010 +0100

    Racket: little evaluation nits

 elisp/geiser-eval.el             |  1 +
 elisp/geiser-racket.el           |  7 ++++---
 scheme/racket/geiser.rkt         |  1 +
 scheme/racket/geiser/eval.rkt    |  9 +++++----
 scheme/racket/geiser/modules.rkt |  2 +-
 scheme/racket/geiser/user.rkt    | 22 ++++++++++++++++------
 6 files changed, 28 insertions(+), 14 deletions(-)

commit f972d32e556e305936e4aa9f1249fe2846e07a20
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 14:22:53 2010 +0100

    Manual nits

 doc/Makefile.am               |  2 +-
 doc/geiser.css                |  1 +
 doc/geiser.texi               |  2 +-
 doc/install.texi              |  2 +-
 doc/intro.texi                | 12 ++++++------
 doc/macros.texi               |  4 ----
 doc/{fun.texi => parens.texi} | 36 ++++++++++++++++++------------------
 doc/repl.texi                 | 42 +++++++++++++++++++++---------------------
 doc/web.texi                  |  2 +-
 9 files changed, 50 insertions(+), 53 deletions(-)
 rename doc/{fun.texi => parens.texi} (95%)

commit 545ed6843fb39f6ed6ef6d7cb28fe8e4cc07e1c5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Nov 6 12:37:07 2010 +0100

    Manual: more precise docs on completion

 doc/fun.texi  |  8 +++++---
 doc/repl.texi | 13 ++++++++-----
 2 files changed, 13 insertions(+), 8 deletions(-)

commit 0320e46e6babf242450dc7e2ade6803213a52090
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 5 21:17:36 2010 +0100

    Documentation nits

 doc/repl.texi   | 3 ++-
 doc/thanks.texi | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 6cc325d0c53f074054c645eae42f2305c01f6b4f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 5 03:15:15 2010 +0100

    Documentation tweaking

 doc/cheat.texi  | 13 +++++++------
 doc/fun.texi    | 18 +++++++++---------
 doc/geiser.texi |  4 ++--
 doc/repl.texi   |  2 +-
 doc/web.texi    |  2 +-
 5 files changed, 20 insertions(+), 19 deletions(-)

commit cb4eaabc1e18b91f1f34899110edf62482163a5b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 5 03:01:07 2010 +0100

    Documentation fix

 doc/cheat.texi | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit b8992fe0b5ab24c66f9d58f61ed9d52ea378d4bf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 5 02:57:15 2010 +0100

    Fix for TAB in REPL, and BACKTAB going to previous error

 doc/cheat.texi       |  7 +++++++
 elisp/geiser-repl.el | 13 +++++++++++--
 2 files changed, 18 insertions(+), 2 deletions(-)

commit 95968c5dff4c8128a377d241436b6454c31c2e69
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 5 01:58:28 2010 +0100

    Racket: fix for help function

 elisp/geiser-racket.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 46a3aa955952156554ea45e8f44af792d0f14669
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 4 22:36:03 2010 +0100

    Manual: image update and grammatical error

 doc/img/repl-mod.png | Bin 13151 -> 17604 bytes
 doc/repl.texi        |   2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

commit 2b84012e105c3f798bbae51c989edb7258d0714b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 4 22:02:54 2010 +0100

    Implementation guessing for scripts with #! ... guile

 elisp/geiser-guile.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit d830e14a4010284b4085d9942bfd856b0360d793
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 1 05:16:55 2010 +0100

    Better error message for edit-symbol-at-point

 elisp/geiser-edit.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit ea42746970657bc05b31c462a01df21d079e4a9e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 1 01:45:58 2010 +0100

    Guile: better meta-command args handling

 elisp/geiser-guile.el         | 26 +++++---------------------
 scheme/guile/geiser/emacs.scm |  2 +-
 2 files changed, 6 insertions(+), 22 deletions(-)

commit e3edc4db496c012da1cf4d406b94bd752ea79622
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 1 00:43:10 2010 +0100

    Guile: fix for the argument shortening algorithm

 elisp/geiser-guile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 375e6549f8662d1316b24a8211d0507430f941c5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 1 00:19:23 2010 +0100

    Guile: shorten a bit more multi-line sexps sent to REPL

 elisp/geiser-guile.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 83b1e75799d56b33dbbcb56b3bc5f8741e3f4cd4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Nov 1 00:03:31 2010 +0100

    Guile: suppress embedded comments when sending multi-line sexps

 elisp/geiser-guile.el | 7 +++++++
 1 file changed, 7 insertions(+)

commit 03e7271ffdc381e69aae401666df56767799e836
Merge: ffd0a91 2603c39
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 20:04:45 2010 +0100

    Merge branch 'master' into guile-meta

commit 2603c39ff801aa860420d65b589dfe831240d05d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 20:03:16 2010 +0100

    REPL: TAB when away from last prompt goes to next error

 elisp/geiser-repl.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit df85a7034789007da33e2b3a5efc12a32e53a651
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 19:47:40 2010 +0100

    REPL: RET on an error jumps to it

 elisp/geiser-repl.el | 34 +++++++++++++++++++++-------------
 1 file changed, 21 insertions(+), 13 deletions(-)

commit ffd0a91a136909c4ed481184073e868ae886e230
Merge: 449a5c9 9325189
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 15:53:12 2010 +0100

    Merge branch 'master' into guile-meta

commit 9325189d4b3cfa2207c015b4f60cf397089edc9f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 15:51:57 2010 +0100

    Informational logs disabled by default
    
    Set geiser-log-verbose-p to t to enable all logs. Calling
    geiser-show-logs with a prefix argument will do that for you.

 elisp/geiser-log.el | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

commit dff681a7e5641f350c0d18c178b7401e75b107d6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 15:13:19 2010 +0100

    Always fallback to edit-module in M-.

 elisp/geiser-completion.el  |  5 +++++
 elisp/geiser-edit.el        | 16 ++++++++++++++--
 scheme/guile/geiser/doc.scm | 13 +++++++------
 3 files changed, 26 insertions(+), 8 deletions(-)

commit e57b89e952cd050f746033a0d40a817211fb5be1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 15:08:50 2010 +0100

    Simple tables (not yet used)

 elisp/geiser-table.el | 137 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 137 insertions(+)
 create mode 100644 elisp/geiser-table.el

commit 5d8a2feb0bc211945518f761c7fffcbb2dd3ff32
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 03:48:53 2010 +0100

    Missing, if thankful, texi file

 doc/thanks.texi | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 doc/thanks.texi

commit 7dbe4a28668ebc601d1f468bd97063bd27c70083
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 03:40:08 2010 +0100

    Documented thanks

 THANKS          |  9 +++++++--
 doc/Makefile.am |  1 +
 doc/cheat.texi  |  2 +-
 doc/geiser.texi | 11 ++---------
 doc/index.texi  |  2 +-
 doc/web.texi    |  2 ++
 6 files changed, 14 insertions(+), 13 deletions(-)

commit bc8ff863ec10cb70b89b4af1983ba1fde0cd3841
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:42:04 2010 +0100

    Fix for geiser-doc-module

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit af8cd551c9ed6cac332fcb4cfa17c5143b9d48a5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:34:30 2010 +0100

    Autodoc: fix for improper macro arglists scanning

 scheme/guile/geiser/doc.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 3d67d9292879f4c5ff50c7326091192293419630
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:04:40 2010 +0100

    Fix for geiser-edit-module

 elisp/geiser-edit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 449a5c9a05feed4f743d98172f78b250c6258d7a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:42:04 2010 +0100

    Fix for geiser-doc-module

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 52f219c47fc5aa1831735823530c83bb34056aef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:34:30 2010 +0100

    Autodoc: fix for improper macro arglists scanning

 scheme/guile/geiser/doc.scm | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 41c403b1b18bbf8b780dbf06f9445a43b602803b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 02:04:40 2010 +0100

    Fix for geiser-edit-module

 elisp/geiser-edit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e0dca7b01b40b3548f03298a16dee252f310a567
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 31 01:46:29 2010 +0200

    Guile: reactivating the debugger during evaluation

 elisp/geiser-guile.el         |  2 +-
 scheme/guile/geiser/emacs.scm | 12 ++++++++++--
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 32592d3fd04db3a9facd9061d20c6ff7da2ce8f8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 23:49:06 2010 +0200

    Guile: debug leftover deleted

 scheme/guile/geiser/emacs.scm | 1 -
 1 file changed, 1 deletion(-)

commit 35e1b306eb7df8449d05d07596c62281bcee7736
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 23:48:18 2010 +0200

    Guile: really support R6RS libs

 elisp/geiser-guile.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 1edb6056df59a119296916a0d4a14b9887e4baa5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 22:51:45 2010 +0200

    Guile: recognizing R6RS libraries as modules

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7fe12503929dd8557a6daee1ad33d91ceef9293b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 22:46:12 2010 +0200

    Guile: using meta-commands to talk with Guile

 elisp/geiser-guile.el              | 31 +++++++++++++++++++-----------
 scheme/guile/geiser/emacs.scm      | 48 ++++++++++++++++++++--------------------------
 scheme/guile/geiser/evaluation.scm | 17 ++++++++++------
 3 files changed, 52 insertions(+), 44 deletions(-)

commit 8e0535dff68717c4073d0933e304a7ad8c803870
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 15:46:15 2010 +0200

    Documentation update to mention new ,enter in Racket

 doc/img/repl-autodoc.png | Bin 54293 -> 44150 bytes
 doc/repl.texi            |   4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)

commit b729d11c255065781e0df9b7a9b2be68a93fafb1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 15:45:40 2010 +0200

    Racket: ,eval -> ,geiser-eval

 elisp/geiser-racket.el        | 7 ++++---
 scheme/racket/geiser/user.rkt | 4 ++--
 2 files changed, 6 insertions(+), 5 deletions(-)

commit 19adb11523a6a1b87ae8dda7c1734db3ca476ddc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 05:02:43 2010 +0200

    Racket: using meta-commands instead of dynamic-require (#30347)
    
    - Much more robust: dynamic-require might not have been defined in the
      REPL's namespace.
    - Fixes #30347 as a side-effect: now all Geiser functions work with
      typed scheme too.

 elisp/geiser-racket.el        | 19 +++++++++++++------
 scheme/racket/geiser/eval.rkt |  6 ++----
 2 files changed, 15 insertions(+), 10 deletions(-)

commit 25efa35db669a3994fc1a4df7462633adfb6941d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 04:58:57 2010 +0200

    Guile: using the new syntax for sending eval requests

 elisp/geiser-guile.el | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

commit 89e1f6444208bc70deeeca765f212296ed11c634
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 04:57:31 2010 +0200

    Elisp: more flexible parsing of :eval and :ge forms
    
    This allows the implementation decide the concrete structure of the
    code sent to the REPL. For instance, it doesn't need to be a single
    s-expression, and argument order can be re-arranged.

 elisp/geiser-autodoc.el    |  2 +-
 elisp/geiser-compile.el    |  2 +-
 elisp/geiser-completion.el |  4 ++--
 elisp/geiser-debug.el      |  4 ++--
 elisp/geiser-doc.el        |  4 ++--
 elisp/geiser-edit.el       |  6 +++---
 elisp/geiser-eval.el       | 41 +++++++++++++++++++++++------------------
 elisp/geiser-repl.el       |  3 +--
 elisp/geiser-xref.el       |  2 +-
 9 files changed, 36 insertions(+), 32 deletions(-)

commit d89131b0ff58fb6d8d12fa0404f2b0d26e964d72
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 30 04:54:59 2010 +0200

    Racket: new meta-commands: ,eval ,apply ,no-values

 scheme/racket/geiser/user.rkt | 24 ++++++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

commit 13f8a9c96e791d9f3ea1b0b73e77d2497b5e95a9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 29 22:51:19 2010 +0200

    Racket: ,enter meta-command instead of namespace clobbering

 elisp/geiser-racket.el        |  6 +++---
 scheme/racket/geiser/user.rkt | 55 ++++++++++++++++++++++-----------------------------
 2 files changed, 27 insertions(+), 34 deletions(-)

commit c6add83b9dd772070e71a6ac2f61fdd948f8b52f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 29 03:50:29 2010 +0200

    Thanks where thanks are due

 THANKS | 4 ++++
 1 file changed, 4 insertions(+)

commit 7121a03cb28386db9c0d034cfb175a8b8f8be9c1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Oct 24 00:26:05 2010 +0200

    Locals completion: a fix and an extension
    
    - ((foo wasn't being completed
    - define-syntax makes its first argument a bound local

 elisp/geiser-completion.el | 2 +-
 elisp/geiser-syntax.el     | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

commit caf962e8deffd840c67ef591613125638ff03d97
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 23 16:12:02 2010 +0200

    Using smart tab mode in REPL

 doc/fun.texi          | 3 ++-
 elisp/geiser-guile.el | 4 ++--
 elisp/geiser-repl.el  | 1 +
 3 files changed, 5 insertions(+), 3 deletions(-)

commit 48333a4d4593b2d616855e50e3211537d210624f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 23 12:50:50 2010 +0200

    A proper (let's hope) fix for the sluggishness problem

 elisp/geiser-syntax.el | 40 +++++++++++++++++++++++++---------------
 1 file changed, 25 insertions(+), 15 deletions(-)

commit 145c5c15cdc0345bafa0e172c68f1a481ee3a19e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 23 01:06:15 2010 +0200

    Temporary fix for sluggishness while scanning big forms

 elisp/geiser-syntax.el | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

commit bafa50637979082e65300cd985e278076910ba62
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 21 20:29:30 2010 +0200

    Doc fix

 doc/fun.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bb25fc4b46e9b82d9e0f119e30f2bda30c5e12d0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 16 03:36:49 2010 +0200

    Manual: cheat sheet

 README          |   5 +-
 doc/Makefile.am |   2 +-
 doc/cheat.texi  | 178 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 doc/fun.texi    |   2 +-
 doc/geiser.texi |  12 ++++-
 doc/index.texi  |   2 +-
 doc/web.texi    |   2 +
 7 files changed, 194 insertions(+), 9 deletions(-)
 create mode 100644 doc/cheat.texi

commit fcfcf8f8dfd0a01dd269822fe9e44716f86be3c1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 16 02:11:24 2010 +0200

    Bug fix: setting correct default-directory in debug buffers

 elisp/geiser-debug.el | 2 ++
 1 file changed, 2 insertions(+)

commit 9da96b7c7d959fb0005b562c923203d21050b4cb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 22:59:32 2010 +0200

    Racket nit: racket/base instead of scheme/base

 scheme/racket/geiser/user.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d8e54ebda76c034f48342e8ee7f2b7901c9bc674
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 22:57:44 2010 +0200

    Documentation for M-. and modules

 README        | 48 +++++++++++++++++++++++-------------------------
 doc/fun.texi  |  5 ++++-
 doc/repl.texi |  4 +++-
 3 files changed, 30 insertions(+), 27 deletions(-)

commit 9e0401cb0d864af44372e60be642f57b4895a1ad
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 19:31:03 2010 +0200

    Documentation for smart-tab mode

 README.org => README | 46 +---------------------------------------------
 doc/fun.texi         |  8 ++++++++
 2 files changed, 9 insertions(+), 45 deletions(-)
 rename README.org => README (71%)

commit 85104cd220c6b694a93f486656802b046cba1a79
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 18:16:20 2010 +0200

    README tweaks

 README.org | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 50 insertions(+), 3 deletions(-)

commit 6d9b904089f4f7b407aa19769b2bc66c95e89132
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 17:05:49 2010 +0200

    README -> README.org

 README => README.org | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename README => README.org (97%)

commit dd9afea0677c99620a1543e06e86712465728681
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 16:56:23 2010 +0200

    Documentation bit

 doc/repl.texi | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 28e90a3c097fc903765cdcbfd2a0bdac4a37c444
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 16:39:06 2010 +0200

    Whitespace

 elisp/geiser-edit.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit c1821b6269d541ae632158252f427cf98481966b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Oct 15 16:33:23 2010 +0200

    Documentation nits

 doc/repl.texi | 2 ++
 doc/site.conf | 3 +++
 2 files changed, 5 insertions(+)

commit 800218e25fda834a04d7823633e8f966d53940e0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 13 20:33:11 2010 +0200

    README fix

 README | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 443b3399a1efbea581694e856b67095e9dbaad51
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Oct 12 00:28:00 2010 +0200

    Menus: callers/callees active only if available

 elisp/geiser-eval.el | 3 +++
 elisp/geiser-mode.el | 6 ++++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 4322100bb18d2b00f409730dcd3985e56f8d4124
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 12:47:28 2010 +0200

    Fix for the fix

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 20381927f97fea260de42656f539fecf1e45bd1b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 12:46:36 2010 +0200

    Bug fix: connect-to-guile wasn't interactive

 elisp/geiser-guile.el | 1 +
 1 file changed, 1 insertion(+)

commit 7df2a764d6091736814766eef21a073165c84bd8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 03:26:56 2010 +0200

    A bit more documentation on remote REPLs

 doc/repl.texi | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

commit a680bcf2c24eb97b61bc4a3b5b043740b9064887
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 03:10:30 2010 +0200

    Documentation for remote REPLs

 doc/repl.texi | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

commit aa3b4233fd2ce19bd3de6759173172e014ef2f63
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 02:25:34 2010 +0200

    Guile: remote REPLs (connect-to-guile)
    
    geiser-connect (or its specialisation, connect-to-guile) working for
    Guile, where the external process is started with the new --listen
    flag.

 elisp/geiser-guile.el              | 12 +++++++++++-
 elisp/geiser.el                    |  3 +++
 scheme/guile/geiser/evaluation.scm | 23 +++++++++++++----------
 3 files changed, 27 insertions(+), 11 deletions(-)

commit 30824831a0211277769ddcbaee431321c603bc03
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Oct 11 02:23:26 2010 +0200

    Remote REPLs: elisp support (geiser-connect)
    
    New user command geiser-connect, which will try to connect to a remote
    server and use it in the REPL.

 elisp/geiser-repl.el | 70 +++++++++++++++++++++++++++++++++++++++++++++++++-----------
 elisp/geiser.el      | 11 +++++-----
 2 files changed, 63 insertions(+), 18 deletions(-)

commit 6cca3627152fa6f4cd3c38c908db820fdc7eac98
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 6 02:34:51 2010 +0200

    Autodoc: fix for position scanning and current symbol
    
    Fixes scan of current symbol when point is in a string or comment and
    detection of argument boundaries.

 elisp/geiser-syntax.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit de4041d918ce90680bfddf9aa8430f8295dcea1e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 6 01:57:18 2010 +0200

    Fixes for scanning of locals during completion

 elisp/geiser-syntax.el | 70 +++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 40 insertions(+), 30 deletions(-)

commit 8170fdab0cf35cf12d1dc091b6232ac4d22fe1a5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 6 00:53:07 2010 +0200

    Use cl only at compile time

 elisp/geiser-autodoc.el    |  2 +-
 elisp/geiser-base.el       | 16 +++++----------
 elisp/geiser-completion.el |  9 +++------
 elisp/geiser-syntax.el     | 57 +++++++++++++++++++++++++++++-------------------------
 4 files changed, 40 insertions(+), 44 deletions(-)

commit 2b0ff9f520839d7389ddb9e2354c709a1ce401d4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Oct 6 00:45:48 2010 +0200

    Documentation nits

 doc/install.texi      | 2 +-
 doc/repl.texi         | 2 +-
 elisp/geiser-guile.el | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

commit 9ac52eca64ed44c9a7fc3d716b685cc71f005d36
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 12 19:20:47 2010 +0200

    Docs: include images only in HTML pages

 doc/fun.texi    |  8 ++++----
 doc/geiser.texi |  3 ++-
 doc/macros.texi | 11 ++++++++---
 doc/repl.texi   |  8 ++++----
 4 files changed, 18 insertions(+), 12 deletions(-)

commit c1fab42b7d6ca1ea2bdf0898057b041f82e02a21
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 12 01:59:47 2010 +0200

    More documentation

 doc/fun.texi                 |  72 ++++++++++++++++++++++++++++++++++++++-------------
 doc/img/eval-error.png       | Bin 27374 -> 27433 bytes
 doc/img/guile-eval-error.png | Bin 0 -> 22733 bytes
 doc/repl.texi                |  21 ++++++++-------
 4 files changed, 65 insertions(+), 28 deletions(-)
 create mode 100644 doc/img/guile-eval-error.png

commit f67278cd012fd9a0dd9c830f2d66966ebfacc55d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 12 01:59:24 2010 +0200

    Couple nits

 elisp/geiser-edit.el   | 2 +-
 elisp/geiser-racket.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 5a2b4648fc9c4212fe19e8794fc2b15230710b95
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 11 22:47:08 2010 +0200

    Racket: support for gracket-text

 elisp/geiser-racket.el | 36 ++++++++++++++++++++++++++++++------
 elisp/geiser.el        |  7 ++++---
 2 files changed, 34 insertions(+), 9 deletions(-)

commit 5a3362429fc4b3daee7cab0718f2c1cadc467ab3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 11 22:46:10 2010 +0200

    A better way of doing the above

 elisp/geiser-base.el | 11 ++++++++++-
 elisp/geiser-repl.el |  4 +---
 2 files changed, 11 insertions(+), 4 deletions(-)

commit 2c6127d54ed940a988ffc31a7285400d6df16e32
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 11 22:40:19 2010 +0200

    Silent autodoc message when starting REPL

 elisp/geiser-repl.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit e70c2887af00bb60b7dad37aa0654751233bdcd3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 8 01:34:48 2010 +0200

    Better REPL exit command

 elisp/geiser-guile.el  | 31 +++++++++++++++++--------------
 elisp/geiser-racket.el |  4 ++++
 elisp/geiser-repl.el   | 38 +++++++++++++++++++++++++++++---------
 3 files changed, 50 insertions(+), 23 deletions(-)

commit 9e072c67041be2a9968d153ab6a6de3c047bc0f0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 05:58:22 2010 +0200

    Guile: configurable warning level

 elisp/geiser-guile.el              | 34 +++++++++++++++++++++++++++++++++-
 scheme/guile/geiser/emacs.scm      | 16 +++++++++++-----
 scheme/guile/geiser/evaluation.scm | 40 +++++++++++++++++++++++++++++++---------
 3 files changed, 75 insertions(+), 15 deletions(-)

commit 9ecfebdfd5d3361c643c2b16b9fb7771122b0e82
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 05:58:05 2010 +0200

    Reuse soruce window when navigating errors

 elisp/geiser-edit.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit acd2cde3b603bcc48dc02337398f7418bad3fa29
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 01:45:18 2010 +0200

    Make next-error (C-x `) work on debug buffers

 elisp/geiser-debug.el |  2 ++
 elisp/geiser-edit.el  | 30 +++++++++++++++++++++++++++---
 2 files changed, 29 insertions(+), 3 deletions(-)

commit 841681e4360b08820bf1e9e0b260a83139d30911
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 00:32:22 2010 +0200

    Guile: fix bug in error display

 elisp/geiser-guile.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 34cfc967b6d377c4c2a795aba692a3652f21bb49
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 00:22:52 2010 +0200

    Guile: evaluation warnings

 scheme/guile/geiser/evaluation.scm | 49 +++++++++++++++++++++++++++++-----------------
 1 file changed, 31 insertions(+), 18 deletions(-)

commit 911a1fc178d9399a62b3742bffb992a41a7a197a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 7 00:22:37 2010 +0200

    Support for evaluation warnings

 elisp/geiser-debug.el  | 42 +++++++++++++++++++++++-------------------
 elisp/geiser-edit.el   | 14 ++++++++++++++
 elisp/geiser-guile.el  | 12 +++++++++---
 elisp/geiser-racket.el | 16 +++-------------
 elisp/geiser-syntax.el |  4 ++++
 5 files changed, 53 insertions(+), 35 deletions(-)

commit d7805560c066359595e67d7edb60769861e1e2e6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 6 21:13:12 2010 +0200

    Guile: geiser-guile-jump-on-debug-p, geiser-guile-show-debug-help-p

 elisp/geiser-custom.el |  5 ++++-
 elisp/geiser-guile.el  | 18 +++++++++++++++++-
 2 files changed, 21 insertions(+), 2 deletions(-)

commit c6acac244447cac2b4580658b40f3bde2425b8c4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 6 07:26:54 2010 +0200

    Allow loading byte-compiled Geiser without make install

 README                  | 14 +++++++++++---
 configure.ac            |  3 ++-
 doc/install.texi        | 20 +++++++++++++++++---
 elisp/Makefile.am       |  8 +++++---
 elisp/geiser-load.el.in |  8 ++++++++
 elisp/geiser-reload.el  | 14 +++++++-------
 elisp/geiser.el         | 26 +++++++++++++-------------
 7 files changed, 63 insertions(+), 30 deletions(-)
 create mode 100644 elisp/geiser-load.el.in

commit 1891a799d793ac980be066a617b5ef542f431b52
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 6 04:45:28 2010 +0200

    Bug fix: assign a default scheme to syntax hilighting buffer

 elisp/geiser-reload.el | 2 +-
 elisp/geiser-syntax.el | 8 +++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 43c915add421637b4db12941e6d738b8de46ff7b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 6 01:50:24 2010 +0200

    Autodoc: clean cache upon evaluation

 elisp/geiser-autodoc.el | 6 ++++--
 elisp/geiser-compile.el | 7 +++++--
 elisp/geiser-debug.el   | 2 ++
 elisp/geiser-reload.el  | 2 +-
 4 files changed, 12 insertions(+), 5 deletions(-)

commit 6c5ab9fbb37f6691395ddcc8b985819b7809cac4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 5 03:33:52 2010 +0200

    Guile: fixes for compilation error regexps

 elisp/geiser-guile.el | 3 +--
 elisp/geiser-repl.el  | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

commit 8fa762ae053d6d2523e59f86c273f64cc421d8ad
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 5 02:32:57 2010 +0200

    Guile: xref commands working again

 elisp/geiser-xref.el         |  9 ++++-----
 scheme/guile/geiser/xref.scm | 13 ++++++-------
 2 files changed, 10 insertions(+), 12 deletions(-)

commit e1fbc2cf7fcd9a0bb77b1f9c0d8fe9d28102d6de
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 5 02:31:52 2010 +0200

    Typo

 doc/repl.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0628b1b2180896edbc0ab6b472860fc951cd5445
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 4 21:30:57 2010 +0200

    Guile: better filtering of "anonymous" module names
    
    Temporary modules with fancy gensym names have kind #f.

 scheme/guile/geiser/modules.scm | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 2d6f9c093ab8f5c29204c7cd82ba53253a2e8348
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 4 21:21:04 2010 +0200

    Documentation nit

 doc/repl.texi | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit afa7fb40739992e22c7b4fd520ac6fac3d8e69c7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 4 21:17:12 2010 +0200

    REPL: (optionally) forget old errors on new expressions

 doc/geiser.texi       | 16 ++++------------
 doc/repl.texi         | 27 +++++++++++++++++++++------
 elisp/geiser-guile.el |  3 +++
 elisp/geiser-repl.el  | 13 +++++++++++++
 4 files changed, 41 insertions(+), 18 deletions(-)

commit 35d7893f4889a7b4e67102b0da6363ed2454bc74
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 3 23:45:31 2010 +0200

    Guile: don't create empty modules before loading them

 scheme/guile/geiser/modules.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit 8efeb0b047131e54550c919493b6f8b2680df29e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 3 22:32:10 2010 +0200

    Docs on scheme initialisation variables

 doc/repl.texi | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 73c8e10e31336b2d1232d833a96b45d1e21c2324
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 2 06:17:08 2010 +0200

    Racket: better stack traces using errortrace

 elisp/geiser-racket.el        |  9 +++++++++
 scheme/racket/geiser.rkt      |  2 ++
 scheme/racket/geiser/eval.rkt | 26 +++++---------------------
 3 files changed, 16 insertions(+), 21 deletions(-)

commit 4399176fae8187e5b896e0d28e4b888b8c39b5d1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 2 06:15:58 2010 +0200

    Yet another fix for scan locals (completion)

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 6108de2068c7badd28f2fa51c8ca3f2d2a7c3482
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 2 06:15:33 2010 +0200

    Dead code elimination

 elisp/geiser-guile.el | 78 ++++++++++++++++-------------------------------------------
 1 file changed, 21 insertions(+), 57 deletions(-)

commit 6fb4f86d76fe7138a549f32d794abc3b742bcecb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 1 04:29:30 2010 +0200

    Fix for C-c C-m (enter module) in REPL

 elisp/geiser-repl.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit abcb7b6737bbe925bd0597a4a526fabb02e95fe8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 31 21:30:46 2010 +0200

    Correctly deactivating autodoc when leaving geiser-mode

 elisp/geiser-mode.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 97d7a64bd4ba60aaaaad4be801becdfa9330f873
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 31 21:26:05 2010 +0200

    Make geiser-mode ask which scheme on activation if guessing fails

 elisp/geiser-impl.el | 4 ++--
 elisp/geiser-mode.el | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit f6e8492346b1ac7be21b96849df25c08dd8ce3ae
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 31 16:43:35 2010 +0200

    Guile: show error message upon entering the debugger

 elisp/geiser-guile.el         | 14 ++++++++++++--
 scheme/guile/geiser/emacs.scm |  2 ++
 2 files changed, 14 insertions(+), 2 deletions(-)

commit fb357359565a89c8e97db0c8068bad11579bb291
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 31 16:42:43 2010 +0200

    Guile: fix for import module REPL command

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3ad5e9e4b96e55e77832f5b9ecec827bfec47e45
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 31 16:41:45 2010 +0200

    Fix for importing modules at the REPL

 elisp/geiser-repl.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit b09474daeb892ef0293342839a379e34d4d7c048
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 07:15:55 2010 +0200

    Fix for locals scanning in presence of rest arguments.

 elisp/geiser-syntax.el | 42 ++++++++++++++++++++++--------------------
 1 file changed, 22 insertions(+), 20 deletions(-)

commit 627eef525aab39ba0895e120f0bca9be7fc10e6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 03:58:51 2010 +0200

    Guile: display backtrace upon entering debugger.
    
    Inserting the banner is disabled for now: it confuses comint badly for
    reasons i don't understand yet.

 elisp/geiser-guile.el | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit 982bd4598eed2549ce1c2cd1f9bae3fa6cdf3e86
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 03:57:16 2010 +0200

    Doc nit.

 doc/install.texi | 1 +
 1 file changed, 1 insertion(+)

commit 31c71af19fdd61f0eda2fd2d0a166d6fce4cb9c7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 03:18:24 2010 +0200

    Docs: index entries.

 README           |  4 ++--
 doc/fun.texi     | 35 +++++++++++++++++++++++++++++++----
 doc/install.texi |  4 ++--
 doc/intro.texi   |  1 +
 doc/repl.texi    | 14 +++++++++++++-
 doc/top.texi     |  1 +
 6 files changed, 50 insertions(+), 9 deletions(-)

commit bbdab87cde36468f0ecff05e8bdc39c443a91ca3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 02:11:43 2010 +0200

    Docs: first complete version of Fun between the parens.

 doc/fun.texi | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

commit b847d375e59662fc8fc88481d9a3a2e4bed3d088
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 01:54:44 2010 +0200

    Docs: image updated.

 doc/img/eval-error.png | Bin 23930 -> 27374 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 00ba7dc2fabb5311677e6b1f0f7ed06bbea6864e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 30 01:14:32 2010 +0200

    More docs and a function renamed.

 doc/fun.texi            |  20 ++++++++++++++------
 doc/img/eval-error.png  | Bin 0 -> 23930 bytes
 doc/img/geiser-mode.png | Bin 38574 -> 62445 bytes
 elisp/geiser-edit.el    |   2 +-
 elisp/geiser-mode.el    |   2 +-
 5 files changed, 16 insertions(+), 8 deletions(-)
 create mode 100644 doc/img/eval-error.png

commit 6424ab0a38362e912192d74745e3c85b0a918cf0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 29 14:50:38 2010 +0200

    A bit more documentation.

 doc/fun.texi | 13 +++++++++++++
 1 file changed, 13 insertions(+)

commit 96076cc456e769a2b54d92f5ab3d72fcb3fdf5fa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 24 06:59:47 2010 +0200

    Compilation commands removed from menu.

 elisp/geiser-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b44071cd31a77f18ac2daa5a6fe6a10cfa1384c8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 24 06:59:19 2010 +0200

    More documentation.

 doc/fun.texi     | 140 +++++++++++++++++++++++++++++++++++++++------------------------
 doc/geiser.texi  |  35 ++++++++++++++--
 doc/install.texi |   6 +--
 doc/intro.texi   |  30 +++++++-------
 doc/macros.texi  |   3 ++
 doc/repl.texi    |  75 +++++++++++++++++-----------------
 6 files changed, 178 insertions(+), 111 deletions(-)

commit 7711c737109013110a706346903fd9c0a3e25660
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 21 00:37:39 2010 +0200

    In texinfo, @var is for meta-variables, not regular ones

 doc/fun.texi  | 20 ++++++++++----------
 doc/repl.texi | 12 ++++++------
 2 files changed, 16 insertions(+), 16 deletions(-)

commit 97510deb57f93c41256b6a28980919344d389008
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 21 00:35:14 2010 +0200

    Ignoring auto4mate dir

 .gitignore | 1 +
 1 file changed, 1 insertion(+)

commit 7cae59669d3d90e2e2023f70a3d949e16256dbe7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 21 00:25:18 2010 +0200

    Bug fix: end-of-buffer in elisp code.

 elisp/geiser-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1fb6db3a9a910836f221816c2b12c84495ebb8a1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 20 22:47:39 2010 +0200

    Providing feedback while retrieving completion lists

 elisp/geiser-completion.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit a0784b20c60d4b5d32ec441dc8e56839bfe40f08
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Aug 19 07:54:58 2010 +0200

    Redisplaying the prompt after empty lines on the REPL.

 elisp/geiser-repl.el          | 21 ++++++++++++++++-----
 scheme/guile/geiser/emacs.scm |  4 +++-
 scheme/racket/geiser/main.rkt |  4 +++-
 3 files changed, 22 insertions(+), 7 deletions(-)

commit 4c25551e639bb19a60211d30e6c7adb2bc51c59e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 14 21:48:10 2010 +0200

    New restart repl command and a bit more docs.

 doc/fun.texi         | 29 +++++++++++++++++++++++++++++
 elisp/geiser-mode.el | 12 ++++++++++++
 2 files changed, 41 insertions(+)

commit 739dde06bdd997995873fcd59f2c1cc1d2976aef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 11 22:41:14 2010 +0200

    More docs.

 doc/fun.texi                |  50 ++++++++++++++++++++++++++++++++++++++++----------
 doc/img/docstring.png       | Bin 0 -> 16390 bytes
 doc/repl.texi               |   1 +
 scheme/guile/geiser/doc.scm |   2 +-
 4 files changed, 42 insertions(+), 11 deletions(-)
 create mode 100644 doc/img/docstring.png

commit ebec43db543a00efa13948f46fa30864844859fe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 11 20:56:39 2010 +0200

    Fixed bug in autodoc signature recognition.

 elisp/geiser-autodoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b706d66773f1ee6222aa0f80520da3a3b6c4b04
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 7 03:05:26 2010 +0200

    A bit more documentation.

 doc/fun.texi | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 979fa6ea369cb0086593f9e3a4d46e003785a425
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 7 03:05:07 2010 +0200

    geiser-font-lock-autodoc-procedure-name -> geiser-font-lock-autodoc-identifier

 elisp/geiser-autodoc.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 188031e2c7c2971cb31f319d51b7cd465380f3a4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 7 02:53:09 2010 +0200

    Manual: autodoc description completed.

 doc/fun.texi              |  34 +++++++++++++++++++++++++++++++++-
 doc/img/autodoc-multi.png | Bin 0 -> 15893 bytes
 doc/img/autodoc-var.png   | Bin 0 -> 7931 bytes
 3 files changed, 33 insertions(+), 1 deletion(-)
 create mode 100644 doc/img/autodoc-multi.png
 create mode 100644 doc/img/autodoc-var.png

commit 7ee06b0911ff7b3fedc0404c22883706a8d128f7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Aug 7 02:52:11 2010 +0200

    geiser-autodoc-procedure-name-format -> geiser-autodoc-identifier-format

 elisp/geiser-autodoc.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 265dba21bf1b9347749452304d40e030488ee2ca
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 6 21:19:26 2010 +0200

    Guile: better formatting of autodoc's variable values.

 scheme/guile/geiser/doc.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 0b5791b3c64a0a704948f99965c17418652fbdcd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 6 21:00:32 2010 +0200

    Nit.

 elisp/geiser-mode.el | 2 +-
 elisp/geiser-repl.el | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 8e3660b42835a04ff6d3a5440db81da2b769444e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 6 20:25:23 2010 +0200

    Bug fix: menu code was obliterating the buffer's associated.repl.

 elisp/geiser-menu.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 94f40872f82fa08d780630ec492d5a4ef4875134
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 6 19:15:35 2010 +0200

    Keybinding changes documented.

 doc/fun.texi          |  52 +++++++++++++++++++++++++++-------------------------
 doc/img/repl-menu.png | Bin 28491 -> 29590 bytes
 doc/repl.texi         |  27 ++++++++++++++-------------
 elisp/geiser-mode.el  |   1 -
 elisp/geiser-repl.el  |  19 +++++++++----------
 5 files changed, 50 insertions(+), 49 deletions(-)

commit 3572a10cc7e9328f491ca20d95e05ae0e377e218
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 6 18:04:58 2010 +0200

    Removing key bindings of the form C-c <alphabetic>.
    
    These are reserved for users. See
    http://www.gnu.org/software/emacs/elisp/html_node/Key-Binding-Conventions.htm

 README               | 39 ++++++++++++++++++++-------------------
 elisp/geiser-repl.el | 10 +++++-----
 2 files changed, 25 insertions(+), 24 deletions(-)

commit 654bfbff2675c45882857411c7a2f3594e708639
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 31 14:04:42 2010 +0200

    Making geiser-scheme-implementation work as advertised.

 elisp/geiser-impl.el | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

commit 47361c31fe721073b3e3a9c16eaa10ef39c805de
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 31 03:52:08 2010 +0200

    Fix for the fix.

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ab7effca73f21c9e5c2f8d94c132b046978bf6ca
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 31 03:11:32 2010 +0200

    Autodoc: fix for current argument hihglighting.

 elisp/geiser-syntax.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit ec3d0d43201f101f738b92eb1827c69641a76dde
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jul 28 01:09:00 2010 +0200

    A bit more documentation.

 doc/fun.texi            |  32 +++++++++++++++++++++++++++++++-
 doc/img/autodoc-req.png | Bin 0 -> 10002 bytes
 2 files changed, 31 insertions(+), 1 deletion(-)
 create mode 100644 doc/img/autodoc-req.png

commit 32f9cb274bc9abc16449d2da50df537c82cc7775
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jul 28 01:08:25 2010 +0200

    Displaying variable values in autodoc.

 elisp/geiser-autodoc.el          |  7 ++++++-
 elisp/geiser-syntax.el           | 31 ++++++++++++++-----------------
 scheme/guile/geiser/doc.scm      |  7 +++++--
 scheme/racket/geiser/autodoc.rkt |  9 ++++++---
 4 files changed, 31 insertions(+), 23 deletions(-)

commit 235543503d09a52a513054ed75ac2506b7ce87bf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 25 23:43:50 2010 +0200

    C-c z as a to and fro jump, plus documentation.

 README                |  2 +-
 doc/fun.texi          | 25 +++++++++++++++++++++----
 doc/repl.texi         |  4 +++-
 elisp/geiser-debug.el |  2 +-
 elisp/geiser-doc.el   |  6 +++++-
 elisp/geiser-mode.el  |  7 ++++---
 elisp/geiser-repl.el  | 26 +++++++++++++++++---------
 7 files changed, 52 insertions(+), 20 deletions(-)

commit 941d65165b3bce917d3bff9952e582800ccf2981
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 25 22:35:41 2010 +0200

    Tweaks to scheme implementation selection, and docs for it.

 doc/fun.texi           | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 doc/repl.texi          |   1 +
 elisp/geiser-guile.el  |   2 ++
 elisp/geiser-impl.el   |  14 ++++----
 elisp/geiser-racket.el |  10 +++---
 5 files changed, 115 insertions(+), 17 deletions(-)

commit d2f2b41c0926ae538ce4acc190150f49e56bc9d5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 25 16:19:00 2010 +0200

    Manual: first section on Scheme buffers.

 doc/fun.texi            |  88 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
 doc/img/geiser-mode.png | Bin 0 -> 38574 bytes
 doc/install.texi        |   1 +
 3 files changed, 85 insertions(+), 4 deletions(-)
 create mode 100644 doc/img/geiser-mode.png

commit 151eb1884a075479e6aa4bc91982661730375d46
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 24 22:00:43 2010 +0200

    Racket: catching errors during contract retrieval.

 scheme/racket/geiser/modules.rkt | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 0fcf4491f889e24853d6b6643b773d0b4e5e7346
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 24 01:30:09 2010 +0200

    Truncating lines in documentation browser.

 elisp/geiser-doc.el              | 1 +
 scheme/racket/geiser/modules.rkt | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

commit d2cb7333992ba6c523814f1de8e714e345a50475
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 24 01:12:26 2010 +0200

    Racket: showing contracts in module documentation.

 elisp/geiser-doc.el              | 13 ++++++++-----
 scheme/racket/geiser/modules.rkt | 20 +++++++++++++-------
 2 files changed, 21 insertions(+), 12 deletions(-)

commit 6d5280bde548ea2df907b716ac51bb2de5a602f7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jul 24 00:27:12 2010 +0200

    A new image for the manual.

 doc/img/repl-mod.png | Bin 15190 -> 13151 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 83302275cd1250826833773f2e04b2b88046aad3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jul 22 00:50:59 2010 +0200

    Guile: bug fix in macro's autodoc.

 scheme/guile/geiser/doc.scm | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

commit 1fef55a87f0b10945b185d80f5282fc5fd82997e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jul 20 22:20:16 2010 +0200

    Guile: geiser commands working at the debugging prompt.

 elisp/geiser-connection.el | 24 +++++++++++++++++++++---
 elisp/geiser-guile.el      |  6 +++++-
 elisp/geiser-repl.el       | 14 ++++++++++++--
 3 files changed, 38 insertions(+), 6 deletions(-)

commit d0ac61ce118cd8a5a49bf6515d17387bbe258357
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jul 20 00:46:46 2010 +0200

    Doc nits.

 doc/repl.texi | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit dbc66666f5374165b5cf4980af11d9647b15a755
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 19 22:26:14 2010 +0200

    REPL: new doc bindings in tune with those in scheme buffers.

 README                |   3 ++-
 doc/img/repl-menu.png | Bin 145164 -> 28491 bytes
 doc/repl.texi         |   9 ++++++++-
 doc/web.texi          |   1 +
 elisp/geiser-repl.el  |   7 +++++--
 5 files changed, 16 insertions(+), 4 deletions(-)

commit 8c0e353f4ba51d25aa8c823f3e6d8ac4ff1b4779
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 19 21:46:27 2010 +0200

    Guile: taking advantage of the patterns property in macro transformers.

 scheme/guile/geiser/doc.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

commit a6df381f547b61ccfb3c572246eb92d5b0839900
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 19 21:45:32 2010 +0200

    Guile: restoring (minimal) support for debugging REPL.

 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 61bf896d30078dcc5f0862e2198db250efb4336c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jul 8 20:43:11 2010 +0200

    Avoiding old-style backquotes during compilation of geiser-popup.el.

 elisp/geiser-popup.el | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

commit 7a854d62eaebd9cf7173fefd838a4cbb7601701a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 5 02:14:41 2010 +0200

    Racket: indentation for typed binding forms.

 elisp/geiser-racket.el |  8 ++++++--
 elisp/geiser-syntax.el | 11 +++++++++++
 2 files changed, 17 insertions(+), 2 deletions(-)

commit 660eb5296bbc16776f7dd3b39f78e88567ed95d0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 5 00:20:03 2010 +0200

    Racket: following error links in separate window.

 elisp/geiser-edit.el   | 8 +++++---
 elisp/geiser-racket.el | 3 ++-
 2 files changed, 7 insertions(+), 4 deletions(-)

commit 8c8d54bf948f88ec2fcf5b1071736884087564d1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jul 4 22:23:24 2010 +0200

    Racket: serious bug preventing file compilation fixed.

 scheme/racket/geiser/eval.rkt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6eccf7716be251d9c5fb4e2457ae77f278af19f1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 29 15:25:02 2010 +0200

    Web pages sync'd

 doc/Makefile.am | 11 +++++++++--
 doc/fun.texi    | 12 ++++++++++++
 doc/geiser.texi |  6 ++++++
 doc/index.texi  |  2 +-
 doc/repl.texi   |  2 +-
 doc/web.texi    |  2 ++
 6 files changed, 31 insertions(+), 4 deletions(-)
 create mode 100644 doc/fun.texi

commit 31b0547f7a37272c3a9bc111d6954e9859ed69ab
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 29 14:51:46 2010 +0200

    Docs: REPL tutorial completed

 doc/geiser.css       |   6 ++++-
 doc/geiser.texi      |   4 +++
 doc/img/repl-mod.png | Bin 0 -> 15190 bytes
 doc/repl.texi        |  81 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 4 files changed, 75 insertions(+), 16 deletions(-)
 create mode 100644 doc/img/repl-mod.png

commit 2f20ae673e1e7b5806270f1ee02b647eb934e5b6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 28 02:34:11 2010 +0200

    Progress in the REPL tutorial.

 doc/img/mod-completion.png | Bin 0 -> 30962 bytes
 doc/img/repl-autodoc.png   | Bin 0 -> 54293 bytes
 doc/img/repl-menu.png      | Bin 147379 -> 145164 bytes
 doc/intro.texi             |   1 +
 doc/repl.texi              | 138 +++++++++++++++++++++++++++++++++++++++++++----------
 5 files changed, 114 insertions(+), 25 deletions(-)
 create mode 100644 doc/img/mod-completion.png
 create mode 100644 doc/img/repl-autodoc.png

commit c717a7ef993b800b6c02aa914b3cee8921142f5d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 28 02:01:02 2010 +0200

    REPL: fix for M-. binding

 elisp/geiser-repl.el | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 3d5e00a5108287d238dbadf398337834864b5f43
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 27 16:55:00 2010 +0200

    Some REPL tweaks.

 elisp/geiser-repl.el | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

commit 9ef09ff72b8c8a015b38a30334b00cb4cea15158
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 27 14:44:16 2010 +0200

    Better switch/import REPL commands.

 elisp/geiser-guile.el  | 13 ++++++++++++-
 elisp/geiser-racket.el | 11 ++++++++++-
 elisp/geiser-repl.el   | 17 ++++++++++++++++-
 3 files changed, 38 insertions(+), 3 deletions(-)

commit eab369930516ece1d40658b891f4629d6f9ed8ac
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 27 01:43:32 2010 +0200

    A new tutorial bit

 doc/Makefile.am       |   1 +
 doc/geiser.css        |  17 ++++++++++--
 doc/geiser.texi       |  16 ++++++++---
 doc/img/repl-menu.png | Bin 0 -> 147379 bytes
 doc/img/repls.png     | Bin 0 -> 154876 bytes
 doc/index.texi        |   2 +-
 doc/install.texi      |   2 +-
 doc/intro.texi        |   2 +-
 doc/macros.texi       |  12 +++++++++
 doc/repl.texi         |  85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 doc/top.texi          |   9 -------
 doc/tutorial.texi     |  12 ---------
 doc/web.texi          |   9 +++++--
 13 files changed, 136 insertions(+), 31 deletions(-)
 create mode 100644 doc/img/repl-menu.png
 create mode 100644 doc/img/repls.png
 create mode 100644 doc/macros.texi
 create mode 100644 doc/repl.texi
 delete mode 100644 doc/tutorial.texi

commit 58ab7aec6417e4410c0b5f886b16c8f49168fa7c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 26 16:45:32 2010 +0200

    Separate main texi file for web site.

 doc/Makefile.am |  4 ++--
 doc/geiser.texi | 43 +------------------------------------------
 doc/top.texi    | 31 +++++++++++++++++++++++++++++++
 doc/web.texi    | 35 +++++++++++++++++++++++++++++++++++
 4 files changed, 69 insertions(+), 44 deletions(-)
 create mode 100644 doc/top.texi
 create mode 100644 doc/web.texi

commit 878f478f5a4b1d9e598d9caa425ee56ad3afb6ab
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 23 23:04:58 2010 +0200

    REPL: quit command.

 README               | 3 ++-
 elisp/geiser-repl.el | 4 +++-
 2 files changed, 5 insertions(+), 2 deletions(-)

commit 6f92b8d92be72a5cc54f7ccb5ed9cef15de33296
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 23 22:54:13 2010 +0200

    REPL: change current module command and better bindings.

 elisp/geiser-completion.el |  3 ++-
 elisp/geiser-mode.el       |  3 ++-
 elisp/geiser-repl.el       | 69 +++++++++++++++++++++++++++++-------------------------
 3 files changed, 41 insertions(+), 34 deletions(-)

commit 2b47a45e126d8fb4457512d6aee0e829a0c6b07f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 23 22:52:32 2010 +0200

    Documentation tweaks

 README            | 8 ++++----
 doc/geiser.css    | 4 ++++
 doc/geiser.texi   | 2 ++
 doc/index.texi    | 2 +-
 doc/install.texi  | 8 +++++++-
 doc/intro.texi    | 5 +++--
 doc/tutorial.texi | 4 +++-
 7 files changed, 24 insertions(+), 9 deletions(-)

commit b14b2114bbce42fd282648a7adc44a87ca42d4de
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 22 01:49:19 2010 +0200

    Unneeded file wiped out.

 doc/make-site.sh | 15 ---------------
 1 file changed, 15 deletions(-)
 delete mode 100755 doc/make-site.sh

commit e27e9961e58925e39cd5a19699806aac640abbd1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 22 01:47:58 2010 +0200

    Engaging texi files in some autotooling.

 .gitignore      |  3 +++
 Makefile.am     |  2 +-
 configure.ac    |  4 ++--
 doc/Makefile.am | 30 ++++++++++++++++++++++++++++++
 4 files changed, 36 insertions(+), 3 deletions(-)
 create mode 100644 doc/Makefile.am

commit 348fdbe00a7cb3d4bc3729fe032f36921715ce70
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 22 01:09:22 2010 +0200

    Missing file.

 doc/tutorial.texi | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 doc/tutorial.texi

commit b0bc376b371bd6d907a2c42248bc2b928c32d333
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 22 01:06:58 2010 +0200

    Documentation tweaks.

 doc/geiser.css   | 17 ++++++++++++++++-
 doc/geiser.texi  | 40 +++++++++++++++++++---------------------
 doc/index.texi   |  2 +-
 doc/install.texi |  8 ++++----
 doc/intro.texi   |  2 +-
 doc/quick.texi   | 10 ----------
 doc/site.conf    |  7 +++----
 7 files changed, 44 insertions(+), 42 deletions(-)
 delete mode 100644 doc/quick.texi

commit 7812150d033cf58036d0b5cea0ca59581681fb17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 21 00:02:34 2010 +0200

    Mentioning Quack in the docs.

 doc/geiser.texi  |  7 +++++--
 doc/install.texi | 58 ++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 37 insertions(+), 28 deletions(-)

commit 25a39cf39fa1b29636111d03ba35cd4862fcba8d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 20 21:52:52 2010 +0200

    Scripts for generating Geiser's website.

 doc/geiser.css   | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 doc/geiser.texi  | 46 +++++++++++++++++++++++++++++++++-----------
 doc/install.texi | 67 +++++++++++++++++++++++++---------------------------------------
 doc/intro.texi   | 24 +----------------------
 doc/make-site.sh | 15 +++++++++++++++
 doc/site.conf    | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++
 6 files changed, 195 insertions(+), 75 deletions(-)
 create mode 100644 doc/geiser.css
 create mode 100755 doc/make-site.sh
 create mode 100644 doc/site.conf

commit 2170808fe933eef91dc374a76d3a56fa57747634
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 20 04:35:58 2010 +0200

    Tweaks to the manual.

 .gitignore       |   1 +
 doc/fdl.texi     | 519 ---------------------------------------------------------------
 doc/geiser.texi  |  14 +-
 doc/index.texi   |   2 +-
 doc/install.texi |   2 +-
 doc/quick.texi   |   2 +-
 6 files changed, 8 insertions(+), 532 deletions(-)
 delete mode 100644 doc/fdl.texi

commit 871b4082904fe087c6616570e496092717e000d1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 20 03:27:25 2010 +0200

    Manual: installation section.

 doc/geiser.texi  |   3 +-
 doc/install.texi | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 doc/intro.texi   |   2 +-
 doc/quick.texi   |   2 ++
 4 files changed, 103 insertions(+), 12 deletions(-)

commit 7cfa18914d1ccb85aca33f659c931be0e8a8c894
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 19 23:35:21 2010 +0200

    The humble beginnings of a user's manual.

 .gitignore       |  12 ++
 README           |   2 +-
 doc/fdl.texi     | 519 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 doc/geiser.texi  |  94 ++++++++++++
 doc/index.texi   |  14 ++
 doc/install.texi |  50 ++++++
 doc/intro.texi   | 111 ++++++++++++++
 doc/quick.texi   |   8 +
 8 files changed, 809 insertions(+), 1 deletion(-)
 create mode 100644 doc/fdl.texi
 create mode 100644 doc/geiser.texi
 create mode 100644 doc/index.texi
 create mode 100644 doc/install.texi
 create mode 100644 doc/intro.texi
 create mode 100644 doc/quick.texi

commit 975831b323afa7ae11a7b960f337faf2a4fd5f10
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 19 16:32:16 2010 +0200

    Guile: no need to de-mangling autodoc args anymore.

 scheme/guile/geiser/doc.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit f7b672621bc80c93c3788bc99ce850f4edc50aaa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 18 13:40:54 2010 +0200

    Guile: filtering gensym names in autodoc display.

 scheme/guile/geiser/doc.scm     | 24 +++++++++++-------------
 scheme/guile/geiser/modules.scm | 14 +++++++-------
 scheme/guile/geiser/utils.scm   | 12 ++++++++++--
 3 files changed, 28 insertions(+), 22 deletions(-)

commit ce3ef41414442b345e5e8d9f064f0d7531addea5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 17 03:29:34 2010 +0200

    Catching abnormal exits of the inferior scheme process.

 elisp/geiser-repl.el | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

commit 99355e34b3e4eeb667692f8d3ae559e672ed45c7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 17 02:49:19 2010 +0200

    Wee refactoring.

 scheme/racket/geiser/autodoc.rkt | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

commit a4ae1d6901d397ad740141dddbd9144c04681586
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 17 02:34:14 2010 +0200

    Racket: using `_' for naming unknown args in autodoc.

 scheme/racket/geiser/autodoc.rkt | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

commit 7166e8e55900d1c3d7c45692c6121fb8a0920e16
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 17 02:10:09 2010 +0200

    Golfing.

 scheme/guile/geiser/modules.scm | 17 +++++++----------
 1 file changed, 7 insertions(+), 10 deletions(-)

commit 4bbe14d551f06608a9df68b4270c5d8b3fc3eb97
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 16 23:05:16 2010 +0200

    Guile: excluding anonymous module names from completion.

 scheme/guile/geiser/modules.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

commit 64ba8a37a52e1b07605915931825de399cb5646a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 15 03:19:03 2010 +0200

    Menu for debug buffer.

 elisp/geiser-debug.el | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 50669ab30243002035b9637c05b51e6b95397335
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 15 02:35:51 2010 +0200

    Hiding the obsolete scheme menu in geiser-mode buffers.

 elisp/geiser-mode.el | 2 ++
 1 file changed, 2 insertions(+)

commit 8b399bd98609c275ccf961c2761ba1f33012353c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 23:54:51 2010 +0200

    Menus for geiser-mode.

 elisp/geiser-doc.el  |  4 +--
 elisp/geiser-menu.el |  6 ++--
 elisp/geiser-mode.el | 93 +++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 57 insertions(+), 46 deletions(-)

commit 3114e4208dd63bde3f978cae581503a70217db63
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 22:31:13 2010 +0200

    Better keybindings for documentation browser

 README                | 26 ++++++++++++--------------
 elisp/geiser-doc.el   | 21 ++++++++++++++-------
 elisp/geiser-popup.el |  3 +--
 3 files changed, 27 insertions(+), 23 deletions(-)

commit 6d36cce3a51d6ebc779d1082b32402001fa9d796
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 22:01:41 2010 +0200

    Popups improvements (excluding view mode's keymap).

 elisp/geiser-popup.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit c98d51d7a6cce6d7d64c1893f5ece70ed83841f9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 20:29:14 2010 +0200

    Refactoring.

 elisp/geiser-impl.el |   3 ++
 elisp/geiser-menu.el | 120 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 58 insertions(+), 65 deletions(-)

commit 8cbee770fd943323297de29f6ae11541a2b63a0b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 04:35:48 2010 +0200

    Nits.

 elisp/geiser-doc.el  |  4 ++--
 elisp/geiser-menu.el | 14 +++++++-------
 elisp/geiser-repl.el |  8 ++++----
 3 files changed, 13 insertions(+), 13 deletions(-)

commit d92baad9f8e9f205ca1dc642e7f763ddbcfec43b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 04:17:54 2010 +0200

    Better menus.

 elisp/geiser-doc.el  |  10 ++---
 elisp/geiser-menu.el | 127 ++++++++++++++++++++++++++---------------------------------
 elisp/geiser-repl.el |  21 +++++-----
 3 files changed, 72 insertions(+), 86 deletions(-)

commit 61a0065711cde95ed7a20f183e871b4628a415b4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 01:37:02 2010 +0200

    New elisp file (geiser-menu) added to Makefile.am.

 elisp/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 47e2bf1d186507a217d23f57532610bce0da824e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 01:01:09 2010 +0200

    REPL menu.

 elisp/geiser-repl.el | 56 ++++++++++++++++++++++++++++++--------------------------
 1 file changed, 30 insertions(+), 26 deletions(-)

commit caae0709112c75d7cac72b5e2249b01cbea3d46c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 01:00:51 2010 +0200

    Support for minor mode toggling in menus.

 elisp/geiser-menu.el | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit e55009c09f5bcfd24fb00a31a2f9570f5c191689
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 00:36:05 2010 +0200

    Menu for documentation browser.

 elisp/geiser-doc.el | 35 +++++++++++++++++++++--------------
 1 file changed, 21 insertions(+), 14 deletions(-)

commit a029a01b9b451647f206be50fd4cdf67bac9e38d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 00:33:41 2010 +0200

    Generic support for menus.

 elisp/geiser-impl.el   |   2 +
 elisp/geiser-menu.el   | 157 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-reload.el |   1 +
 3 files changed, 160 insertions(+)
 create mode 100644 elisp/geiser-menu.el

commit 2daad50e9f20fd815ea3ac81786dc675b3b59a8d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 00:32:42 2010 +0200

    Half-baked code deactivated for now.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 85de1f30777b90e79639b170fbc069e79aa608c2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 14 00:32:08 2010 +0200

    Dead code elimination.

 elisp/geiser-r6rs.el | 50 --------------------------------------------------
 1 file changed, 50 deletions(-)
 delete mode 100644 elisp/geiser-r6rs.el

commit 25ed49cddef2977a6620b3f7ec8a2a8a972ef3f2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 12 00:14:27 2010 +0200

    Fix for popups: don't deactivate view-mode on exit.

 elisp/geiser-popup.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 1d50e765c1b8aad497973d55a7543c746e348e8f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 12 00:07:53 2010 +0200

    Nit.

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 31df91e17edf9e8eea742b5a6f674a20868ec827
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 12 00:03:28 2010 +0200

    New buttons (source, forward/backward) in document browser.

 elisp/geiser-doc.el    | 101 +++++++++++++++++++++++++++++++++++++++++++++------------
 elisp/geiser-edit.el   |   5 +--
 elisp/geiser-reload.el |   4 +--
 elisp/geiser-syntax.el |  32 +++++++++---------
 4 files changed, 102 insertions(+), 40 deletions(-)

commit 4428e92f1ea97ac1443740c97e0ad8db6d0259fa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 11 20:00:35 2010 +0200

    Fixes for module navigation in doc browser.

 elisp/geiser-doc.el | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

commit 78a281ecfed5dd848929813d4aa1c7c0de209fbb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 11 20:00:02 2010 +0200

    Guile: tweaks to the previous fix.

 scheme/guile/geiser/modules.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit a182ebe9a51ecb902103d038b4b217ded959a025
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 11 18:18:10 2010 +0200

    Guile: showing again submodules in module documentation.

 scheme/guile/geiser/modules.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 9ff0ba8e1fb1b990c6f5e17f7ccb69101d96d4a6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 11 13:52:51 2010 +0200

    Guile: fix for module name completion.

 scheme/guile/geiser/modules.scm | 36 ++++++++++++++++++++----------------
 1 file changed, 20 insertions(+), 16 deletions(-)

commit 651f43777efde955f63f8e0818a626143fb75736
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 10 03:27:22 2010 +0200

    Racket: improvements in module lookups.
    
       - We now correctly register submodules and handle main files.
       - We contemplate the possibility that a module is accessed using
         different paths.

 scheme/racket/geiser/enter.rkt   | 48 +++++++++++++++++++++++++++++++++++++++++++-----
 scheme/racket/geiser/modules.rkt | 47 +++++++++++++++++++++++------------------------
 2 files changed, 66 insertions(+), 29 deletions(-)

commit 61cb8d659399a942fa74947749b3a23a88bda04f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 9 00:41:22 2010 +0200

    Racket: improvements in non-loaded module location.

 scheme/racket/geiser/modules.rkt | 42 +++++++++++++++++++++++++++++-------------
 1 file changed, 29 insertions(+), 13 deletions(-)

commit e9b0f1aaa810c15dbdffc4147f2956851c4f1782
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 8 02:11:55 2010 +0200

    Racket: square cosmetics.

 scheme/racket/geiser/autodoc.rkt   | 154 ++++++++++++++++++++++-----------------------
 scheme/racket/geiser/enter.rkt     |   4 +-
 scheme/racket/geiser/eval.rkt      |  16 ++---
 scheme/racket/geiser/locations.rkt |  10 +--
 scheme/racket/geiser/modules.rkt   |  68 ++++++++++----------
 scheme/racket/geiser/utils.rkt     |   8 +--
 6 files changed, 130 insertions(+), 130 deletions(-)

commit d402ed3f41790abb9861af9dbe47166295cd66b1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 8 01:42:04 2010 +0200

    Racket: autodoc for struct constructors

 scheme/racket/geiser/autodoc.rkt | 25 ++++++++++++++-----------
 scheme/racket/geiser/enter.rkt   | 18 +++++++++---------
 2 files changed, 23 insertions(+), 20 deletions(-)

commit 616c53c6e12ff227e3fbff782f4d7f8be120aa5c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 8 01:02:58 2010 +0200

    Racket: fix for kwargs display.

 scheme/racket/geiser/autodoc.rkt | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 62cb11d150a99d0284f783259449dc60c0dc0adc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 8 00:08:38 2010 +0200

    Guile: small tweak.

 elisp/geiser-guile.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a38d34a8735bcc28d1c01f4128ab299b88ed7b58
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 03:35:33 2010 +0200

    Guile: displaying the debugger preamble.

 elisp/geiser-guile.el | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

commit 2fb9578e1ae6edfd2dbd4a90a44ac6b0aef55d6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 03:34:57 2010 +0200

    Guile: no more module loading under the rug.

 scheme/guile/geiser/modules.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e00cf1fd0a98d168a71c9eff1fe086a1e664680a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 02:26:44 2010 +0200

    Oops, it wasn't dead.

 elisp/geiser-guile.el | 43 ++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 42 insertions(+), 1 deletion(-)

commit f0db115f00abb485c0197de931aa4f233d764e5f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 02:21:06 2010 +0200

    Guile: dead elisp code elimination.

 elisp/geiser-guile.el        | 44 +-------------------------------------------
 scheme/guile/geiser/xref.scm |  2 +-
 2 files changed, 2 insertions(+), 44 deletions(-)

commit f669d52cfa944865f0b1f340dc0a7e634fec8e99
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 01:33:55 2010 +0200

    README: note about Guile version.

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 17b23aa1bfe807c68ddc5ff01eaccc99fd02a058
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 7 01:25:14 2010 +0200

    Guile: real fix for symbol locations (needs Guile's git head).

 scheme/guile/geiser/evaluation.scm |  8 +-------
 scheme/guile/geiser/modules.scm    | 23 ++++++++++++++++++++---
 scheme/guile/geiser/xref.scm       |  2 +-
 3 files changed, 22 insertions(+), 11 deletions(-)

commit 95f39e30fd4ae59cf962648dc8c0120c654c05bd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 21:33:21 2010 +0200

    Elisp: missing require.

 elisp/geiser-popup.el | 2 ++
 1 file changed, 2 insertions(+)

commit 7265c941f5b09f9a4c4eb4d70a361ead4bbb2b3e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 21:14:54 2010 +0200

    Elisp: better fix for previous bug.

 elisp/geiser-autodoc.el |  8 ++------
 elisp/geiser-syntax.el  | 12 +++---------
 2 files changed, 5 insertions(+), 15 deletions(-)

commit 1ed3aca4b58fe3cf51d5a91e2bf4371f38d17122
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 20:20:57 2010 +0200

    Elisp: fixes for key args display.

 elisp/geiser-autodoc.el | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

commit 9630e161959a39d35534cb19089a3c6581bdadd8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 19:28:36 2010 +0200

    Guile: new evaluation strategy that really delimits stack frames.

 scheme/guile/geiser/evaluation.scm | 32 +++++++++++++++++++++-----------
 1 file changed, 21 insertions(+), 11 deletions(-)

commit d8aad434a66e5656b583d17a139da20ca52c3321
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 18:22:44 2010 +0200

    Guile: fix for finding locations of symbols in modules outside load path.

 scheme/guile/geiser/evaluation.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit b5941ceec4fc06e3cdac0098ada3a561c476d627
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 18:16:08 2010 +0200

    Guile: fix for macroexpand.

 scheme/guile/geiser/evaluation.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 48b25de81bb81ab479f3b71536ad056fe322d5a3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 14:14:56 2010 +0200

    Guile: better stack trace limits during evaluation.

 scheme/guile/geiser/evaluation.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit fb189e4530f93138f25546d5633e9703c04f932b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 06:12:14 2010 +0200

    Debugging leftover.

 elisp/geiser-guile.el | 1 -
 1 file changed, 1 deletion(-)

commit a9f26a5234473af5e5d577b1855793f5e2ed2faa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 06:01:27 2010 +0200

    Guile: fixes for error navigation.

 elisp/geiser-guile.el | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

commit f911e89822474bb57152ba6db861f1bd6be00460
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 05:36:43 2010 +0200

    Guile: evaluation fixes (current git head).

 scheme/guile/geiser/evaluation.scm | 6 ++++--
 scheme/guile/geiser/modules.scm    | 5 +++--
 scheme/guile/geiser/xref.scm       | 6 ++++--
 3 files changed, 11 insertions(+), 6 deletions(-)

commit 4d8117a2e9b6dd3b969e84b72c8fbbfcd4e87c21
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 03:59:47 2010 +0200

    Adding define-syntax-rule to heuristics for locating definitions.

 elisp/geiser-edit.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9961210627268ec740998f8a7cdb942c6b7cdc23
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 03:59:03 2010 +0200

    Conflicts between view-mode and geiser-doc-mode keymaps removed.

 README                | 10 +++++-----
 elisp/geiser-doc.el   | 13 +++++--------
 elisp/geiser-popup.el |  7 ++++---
 3 files changed, 14 insertions(+), 16 deletions(-)

commit 8f42520501ade7643aa517b2c5aa2456ac992f02
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 03:58:01 2010 +0200

    Avoiding duplicates in autodoc arg lists

 elisp/geiser-autodoc.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit d286490c5a7fbe0554ff946b712c1f5308f38f95
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 00:41:45 2010 +0200

    Reusing emacs view-mode for pop-up windows.

 elisp/geiser-popup.el | 49 ++++++++-----------------------------------------
 1 file changed, 8 insertions(+), 41 deletions(-)

commit c133d5c569e53edc0ccf89c783be668061902c02
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 6 00:41:07 2010 +0200

    Whitespace.

 elisp/geiser-debug.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 098070ce89f21d692261fe49d07319ee1d7fdd66
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 5 23:55:14 2010 +0200

    Racket: providing error contexts

 elisp/geiser-debug.el         |  2 +-
 scheme/racket/geiser/eval.rkt | 26 +++++++++++++++++++++++---
 2 files changed, 24 insertions(+), 4 deletions(-)

commit fe69f305ea550c9822f280e574ba3d80dd3e3d0a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 5 21:26:41 2010 +0200

    Better signature parsing (improper arg lists).

 elisp/geiser-autodoc.el | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 222f125204291dfc93cb9b0de1270bf86b141a56
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 5 20:40:28 2010 +0200

    Bug in scheme reader fixed

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b0b8e2fd310e97689a3f90781f26b6ae8129e025
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 5 17:18:40 2010 +0200

    Racket: off-by-one bug in module name completions

 scheme/racket/geiser/modules.rkt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 99285f865b352ce0658cca3cd4845995af4ea71d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 5 15:26:37 2010 +0200

    Racket: better autodoc for syntax forms

 elisp/geiser-completion.el       |  3 ++-
 scheme/racket/geiser/autodoc.rkt | 11 +++++++++--
 scheme/racket/geiser/enter.rkt   |  3 ++-
 3 files changed, 13 insertions(+), 4 deletions(-)

commit f0ff37dc07075298043a8b5319867d355f41a773
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 24 05:00:58 2010 +0200

    Elisp: misc little bugs (revealed by the byte compiler) fixed.

 elisp/geiser-completion.el | 7 ++++---
 elisp/geiser-racket.el     | 2 +-
 elisp/geiser-repl.el       | 2 +-
 elisp/geiser-syntax.el     | 2 +-
 4 files changed, 7 insertions(+), 6 deletions(-)

commit 185abd5871b99d3642ee43db0d8590e54d66f898
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 24 04:59:54 2010 +0200

    Elisp: compilation fixed.

 elisp/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2d30daecad657d692a7f3cb66deb496630362600
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 24 00:03:30 2010 +0200

    Racket: PLT implementation renamed to Racket.

 elisp/geiser-impl.el                          |   2 +-
 elisp/{geiser-plt.el => geiser-racket.el}     | 137 +++++++++++++++++-----------------
 elisp/geiser.el                               |  10 +--
 scheme/Makefile.am                            |  20 ++---
 scheme/{plt => racket}/geiser.rkt             |   0
 scheme/{plt => racket}/geiser/autodoc.rkt     |   2 +-
 scheme/{plt => racket}/geiser/completions.rkt |   2 +-
 scheme/{plt => racket}/geiser/enter.rkt       |   2 +-
 scheme/{plt => racket}/geiser/eval.rkt        |   2 +-
 scheme/{plt => racket}/geiser/locations.rkt   |   2 +-
 scheme/{plt => racket}/geiser/main.rkt        |   2 +-
 scheme/{plt => racket}/geiser/modules.rkt     |   2 +-
 scheme/{plt => racket}/geiser/user.rkt        |   3 +-
 scheme/{plt => racket}/geiser/utils.rkt       |   2 +-
 14 files changed, 94 insertions(+), 94 deletions(-)
 rename elisp/{geiser-plt.el => geiser-racket.el} (53%)
 rename scheme/{plt => racket}/geiser.rkt (100%)
 rename scheme/{plt => racket}/geiser/autodoc.rkt (99%)
 rename scheme/{plt => racket}/geiser/completions.rkt (98%)
 rename scheme/{plt => racket}/geiser/enter.rkt (99%)
 rename scheme/{plt => racket}/geiser/eval.rkt (99%)
 rename scheme/{plt => racket}/geiser/locations.rkt (99%)
 rename scheme/{plt => racket}/geiser/main.rkt (98%)
 rename scheme/{plt => racket}/geiser/modules.rkt (99%)
 rename scheme/{plt => racket}/geiser/user.rkt (98%)
 rename scheme/{plt => racket}/geiser/utils.rkt (98%)

commit 0b491101472741c3728b6ccf80c121d66e90f94e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 23 23:28:38 2010 +0200

    PLT: Minimum version bumped to 5.0.

 README                | 2 +-
 scheme/plt/geiser.rkt | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

commit ef777b73dcd53f7341c32fdf04b39906c86087f3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 23 23:23:46 2010 +0200

    PLT: Completing the .ss -> .rkt transition.

 scheme/plt/geiser.rkt             |  6 +++---
 scheme/plt/geiser/autodoc.rkt     |  4 ++--
 scheme/plt/geiser/completions.rkt |  6 +++---
 scheme/plt/geiser/enter.rkt       |  4 ++--
 scheme/plt/geiser/eval.rkt        |  4 ++--
 scheme/plt/geiser/locations.rkt   |  6 +++---
 scheme/plt/geiser/main.rkt        |  6 ++----
 scheme/plt/geiser/modules.rkt     | 15 +++++++++------
 scheme/plt/geiser/user.rkt        |  4 ++--
 scheme/plt/geiser/utils.rkt       |  6 +++---
 10 files changed, 31 insertions(+), 30 deletions(-)

commit 94f76a1565f09d189d9f2cef6d3df7860321709e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 23 23:10:52 2010 +0200

    Racket support (PLT 5 needed).

 elisp/geiser-plt.el                                   | 17 +++++++++++------
 elisp/geiser.el                                       |  4 +++-
 scheme/plt/{geiser.ss => geiser.rkt}                  |  0
 scheme/plt/geiser/{autodoc.ss => autodoc.rkt}         |  0
 scheme/plt/geiser/{completions.ss => completions.rkt} |  0
 scheme/plt/geiser/{enter.ss => enter.rkt}             |  0
 scheme/plt/geiser/{eval.ss => eval.rkt}               |  2 +-
 scheme/plt/geiser/{locations.ss => locations.rkt}     |  0
 scheme/plt/geiser/{main.ss => main.rkt}               |  0
 scheme/plt/geiser/{modules.ss => modules.rkt}         |  0
 scheme/plt/geiser/{user.ss => user.rkt}               |  0
 scheme/plt/geiser/{utils.ss => utils.rkt}             |  0
 12 files changed, 15 insertions(+), 8 deletions(-)
 rename scheme/plt/{geiser.ss => geiser.rkt} (100%)
 rename scheme/plt/geiser/{autodoc.ss => autodoc.rkt} (100%)
 rename scheme/plt/geiser/{completions.ss => completions.rkt} (100%)
 rename scheme/plt/geiser/{enter.ss => enter.rkt} (100%)
 rename scheme/plt/geiser/{eval.ss => eval.rkt} (97%)
 rename scheme/plt/geiser/{locations.ss => locations.rkt} (100%)
 rename scheme/plt/geiser/{main.ss => main.rkt} (100%)
 rename scheme/plt/geiser/{modules.ss => modules.rkt} (100%)
 rename scheme/plt/geiser/{user.ss => user.rkt} (100%)
 rename scheme/plt/geiser/{utils.ss => utils.rkt} (100%)

commit acceb169d10e6096124a79b57d1c7e2dc447d37d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 18 14:11:03 2010 +0200

    Missing entries in scheme/Makefile.am added.

 scheme/Makefile.am          | 3 +++
 scheme/guile/geiser/doc.scm | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

commit 4ab8dda507e77b0cc089144b533b3f23f35519ca
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Apr 16 20:36:26 2010 +0200

    Guile: evaluation output collection reactivated.
    
    with-output-to-string was broken in guile prior to 1.9.10.

 README                             | 2 +-
 scheme/guile/geiser/evaluation.scm | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

commit 5685fad662ea2568a8e16dcfdc709f1476abd15c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 1 03:33:59 2010 +0200

    Using the scheme reader to read modules names.

 elisp/geiser-guile.el | 3 ++-
 elisp/geiser-plt.el   | 5 +++--
 2 files changed, 5 insertions(+), 3 deletions(-)

commit e6561280d19f32a9d556f729a5bfefabb950e79f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 1 03:32:12 2010 +0200

    More lenient scheme reader.

 elisp/geiser-syntax.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit d96fe6fc9dbad5d65abe271ceb692f732d53e2fe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 1 02:19:32 2010 +0200

    PLT: Major module loading surgery.
    
    This is a dangerous commit. If you use PLT and don't like to live on
    the edge, just stick with tag 0.0.9 until 0.0.10 is out.

 scheme/plt/geiser.ss         |   3 +-
 scheme/plt/geiser/enter.ss   | 103 +++++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/plt/geiser/main.ss    |   9 +----
 scheme/plt/geiser/modules.ss |  21 +++++------
 scheme/plt/geiser/user.ss    |  57 ++++++++++++++++++++++++++++
 5 files changed, 173 insertions(+), 20 deletions(-)
 create mode 100644 scheme/plt/geiser/enter.ss
 create mode 100644 scheme/plt/geiser/user.ss

commit 8c47f6099fd05e2feb7cb51e15d39911ef48411d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 31 21:40:20 2010 +0200

    PLT: geiser is now a regular module.

 elisp/geiser-plt.el          |  7 +++----
 scheme/plt/geiser.ss         | 52 ++++++++------------------------------------------
 scheme/plt/geiser/autodoc.ss |  4 ++--
 scheme/plt/geiser/eval.ss    |  6 +++---
 scheme/plt/geiser/main.ss    | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 70 insertions(+), 53 deletions(-)
 create mode 100644 scheme/plt/geiser/main.ss

commit a2770a5c5fae6c7d845f2fe9b91ca7a1cec329e2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 31 18:40:03 2010 +0200

    PLT: correct scanning of arglists in (module) forms.

 scheme/plt/geiser/autodoc.ss | 2 ++
 1 file changed, 2 insertions(+)

commit dcbe97e5329a06a366cbbd428e8076f7cca277ee
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 31 11:54:06 2010 +0200

    PLT: preloading available module list.

 scheme/plt/geiser/modules.ss | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

commit 7c6294e8a8775d59e347e29cbbbef96c8d095c11
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 28 06:58:44 2010 +0200

    More robust REPL input handling.

 elisp/geiser-repl.el | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

commit 1d4c0a0474f8934aa989c1a03e6fd8f63cd9c899
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 28 06:58:12 2010 +0200

    PLT: Correct version check.

 elisp/geiser-plt.el  |  3 ++-
 scheme/plt/geiser.ss | 15 +++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)

commit c58f1093970c7fb90b44c98a7cc762453e9b7936
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 27 21:10:09 2010 +0100

    PLT: Preserving pretty-printing in evaluation outputs.

 elisp/geiser-plt.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4ada7d2af871ed00c33f4a57cb0cc6d445acab3a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 27 15:45:52 2010 +0100

    Automatically pop-up dbg buffer if there's any output during evaluation.

 elisp/geiser-debug.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9a6f0303a54aa3c687e63f03e83cae63d4c8e5ce
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 27 15:45:14 2010 +0100

    PLT: some simplifications.

 scheme/plt/geiser/modules.ss | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

commit 1e39c1ab55a86b66a58323bb9ea16de59f1c3e61
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 19 01:46:59 2010 +0100

    Guile: better stack traces (using start-stack to delimit them).

 README                             | 4 ++--
 scheme/guile/geiser/evaluation.scm | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

commit ee45fc1bf84b6bf1304a621e66713963f2740f84
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 19 01:45:39 2010 +0100

    Irrelevant golfing.

 scheme/plt/geiser/modules.ss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dd4cc0dfd32ca26dad6f02c08294f8e89f5edab2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 15 04:49:40 2010 +0100

    Bug fix: M-. now works in documentation buffers.

 elisp/geiser-doc.el | 32 +++++++++++++++++++++++++++-----
 1 file changed, 27 insertions(+), 5 deletions(-)

commit fa7405b1a1881b15b6937e818d2de08d6be3a9c5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 15 04:45:44 2010 +0100

    Whitespace.

 elisp/geiser-edit.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit eb1f0a9362c8b6b19d3f4e41d32f89b94d17e873
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 13 03:49:22 2010 +0100

    Guile: heuristically resolving relative paths in REPL errors.

 elisp/geiser-guile.el | 37 +++++++++++++++++++++++++++++++++++--
 1 file changed, 35 insertions(+), 2 deletions(-)

commit 495a4b9bb253cb4dc443ae45fbdc2e02b7e81e4f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 8 02:45:02 2010 +0100

    Guile: slightly better compilation error regexps.

 elisp/geiser-guile.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ed6409dd39717d623cef5cf6afd5a05cd83050a1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 8 02:14:35 2010 +0100

    Guile: 'bt' when entering the debugger.

 elisp/geiser-guile.el | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

commit 5713490e2ca1bb5ac77cddbbaf97cce5ac9fa0b1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 8 02:14:03 2010 +0100

    Hook to setup the debugger when it's launched.

 elisp/geiser-connection.el | 15 +--------------
 elisp/geiser-debug.el      |  5 ++++-
 2 files changed, 5 insertions(+), 15 deletions(-)

commit fd87a78cd54874a7f8260cdae11868d6ab718f09
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 23:43:50 2010 +0100

    Better prompt behaviour in switch to REPL and module.

 elisp/geiser-repl.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit ae417f23b53c811d193fe32af23963f603545746
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 21:39:41 2010 +0100

    Guile: switch to REPL and module activated.

 elisp/geiser-guile.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit ef17947ca8f80e67fe542b8a563b6297f3668cbe
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 21:39:13 2010 +0100

    Go to geiser and switch to module: echoing.

 elisp/geiser-repl.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 65babf6e0ec27d0757e36c91a4bbddcba6df9b56
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 21:29:35 2010 +0100

    PLT: additional binding forms (sequence API).

 elisp/geiser-plt.el | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 9a14aa781cf79eccf20aba73b91dce65c26ff2e2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 21:29:13 2010 +0100

    Implementations can now specify additional binding forms.

 elisp/geiser-completion.el | 20 +++++++++++++++++---
 elisp/geiser-syntax.el     | 26 +++++++++++++++++++-------
 2 files changed, 36 insertions(+), 10 deletions(-)

commit 9f5d185d17c1e7258b9dc3df5fce46de7945ff12
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 21:28:28 2010 +0100

    Whitespace.

 elisp/geiser-company.el | 11 +++++++----
 elisp/geiser-mode.el    |  3 ++-
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 1e87980a965528177fef3cf97298f44ef02cbfc0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 05:16:20 2010 +0100

    New command to switch to REPL and put it in current module.

 README                |  1 +
 elisp/geiser-guile.el |  5 +++++
 elisp/geiser-mode.el  | 10 ++++++++--
 elisp/geiser-plt.el   |  6 +++++-
 elisp/geiser-repl.el  | 14 ++++++++++++++
 5 files changed, 33 insertions(+), 3 deletions(-)

commit c60416ef24f5d97feba85674198932ffda5fdba5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 7 04:26:08 2010 +0100

    Bug fix: remember debugger settings in geiser-repl-nuke.

 elisp/geiser-impl.el | 9 ++++++---
 elisp/geiser-repl.el | 3 ++-
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 1492336888d8eb9bf959b36e5e84190b8f1ec79d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 1 01:00:20 2010 +0100

    REPL: customizable auto-indenting of new lines.

 elisp/geiser-repl.el | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit b87e894c6d68a6c2b24bc75b65a76e1a12b3791b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 27 22:57:53 2010 +0100

    Better handling of multi-line input in the REPL
    
    - We don't send incomplete sexps to the underlying REPL
    - Automatic indentation of multi-line sexps
    - Syntax highlighting of scheme keywords

 elisp/geiser-repl.el | 51 ++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 40 insertions(+), 11 deletions(-)

commit 070b159aa6db39cd220e76b25d6ad58b2a0e3362
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 27 22:56:26 2010 +0100

    More room for recursion in the scheme reader.

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 2b57e2a87b5ba7c65a3c8fe5b997205e2d829874
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 27 22:55:44 2010 +0100

    Whitespace.

 elisp/geiser-completion.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 5d713118a24a8766ea788288c1b47c96cf9bf5a6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 3 01:03:20 2010 +0100

    PLT: Better help lookups.

 elisp/geiser-plt.el          | 13 +++++++++----
 scheme/plt/geiser/autodoc.ss |  6 +++---
 scheme/plt/geiser/modules.ss |  1 +
 3 files changed, 13 insertions(+), 7 deletions(-)

commit 0eaf8e78241b8bac9698ab3694d8060ac113fd56
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 2 15:59:51 2010 +0100

    Elisp scheme reader: more room for recursive list scanning.

 elisp/geiser-syntax.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit a1d4a163464157ad5bb0b82f92a2ebfcc81aacf4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 2 15:59:25 2010 +0100

    PLT: Fix for bug retrieving module exports.

 scheme/plt/geiser/modules.ss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit f6c09395b569f273ca27bc951ec5b882f2c3da86
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jan 28 14:54:42 2010 +0100

    Guile: support for the REPL debugger
    
    On errors, we switch to the REPL, where the debugger is active.

 elisp/geiser-guile.el              | 32 ++++++++++----------------------
 scheme/guile/geiser/evaluation.scm | 19 ++++---------------
 2 files changed, 14 insertions(+), 37 deletions(-)

commit bdda30e6f263f7142f2f33a8be2545d3061fb598
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jan 28 14:53:33 2010 +0100

    Generic support for debugging prompts in the REPL

 elisp/geiser-autodoc.el    | 10 ++++--
 elisp/geiser-connection.el | 92 +++++++++++++++++++++++++++++++++++++++++-------------
 elisp/geiser-debug.el      | 27 ++++++++--------
 elisp/geiser-impl.el       |  5 +--
 elisp/geiser-repl.el       | 14 +++++++--
 5 files changed, 106 insertions(+), 42 deletions(-)

commit dd0ef53303074c1217363d363c1cccc6fcad6dc7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jan 26 18:08:39 2010 +0100

    Guile: Minimal support for the new REPL debug mode.
    
    We just don't hang when the REPL enters its debug mode, and salute any
    attempt at using a Geiser command with a warning (and no result).

 elisp/geiser-guile.el | 28 ++++++++++++++++++++++++++--
 1 file changed, 26 insertions(+), 2 deletions(-)

commit 26e9c414608c3e287f736bbedffff291e46e6f40
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 24 20:31:21 2010 +0100

    Guile: Geiser now behaves correctly in buffers for unloaded modules.

 elisp/geiser-eval.el               |  5 +++--
 elisp/geiser-guile.el              |  3 +--
 scheme/guile/geiser/evaluation.scm | 13 ++++++++++---
 3 files changed, 14 insertions(+), 7 deletions(-)

commit aa02b8c828bc4468e15324a68f8d97a46ca21a87
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 24 17:14:45 2010 +0100

    Guile: fix for autodoc in 1.9.7

 scheme/guile/geiser/doc.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit c40f4db9dce660802f1173e281d9a1e139ebd819
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jan 17 14:09:26 2010 +0100

    Minor bug fix.

 elisp/geiser-connection.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 37c582ee0552e67c2363ad833d6159b13c89d6d8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jan 11 00:32:35 2010 +0100

    PLT: Fix for argument names parsing in autodoc.

 scheme/plt/geiser/autodoc.ss | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 67118955c9862ff0cc81eaf4245ca057a31983b0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 19 16:37:15 2009 +0100

    Syntax error.

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 790d37d078079db0f81271520878eda27f4c956e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 19 02:58:14 2009 +0100

    Even shorter REPL mode-line.

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a5ef72f290d52bf5777ea7334f9a81e2868ca5c8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 19 02:51:18 2009 +0100

    Shorter mode-line lighter for REPL mode.

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 469d21cb2013b831c82a304f930266a614f95b7f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Dec 19 02:46:04 2009 +0100

    Guile: adjustment to stack size display.
    
    Getting rid of geiser-specific stack info -- guile seems to be
    providing no useful additional info in the current version.

 scheme/guile/geiser/evaluation.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 62d3ee0ccb778ed571e45e44bff3eb631ed4c5e4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Dec 18 00:35:57 2009 +0100

    Guile: fix for file loading (we always compile them now).

 scheme/guile/geiser/evaluation.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 9c85f8c16b82531fa4fc86412071782d2d0b842e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Dec 18 00:24:16 2009 +0100

    Guile: bug in backtrace display fixed.

 elisp/geiser-debug.el |  3 ++-
 elisp/geiser-guile.el | 19 ++++++++++---------
 elisp/geiser-repl.el  |  3 ++-
 3 files changed, 14 insertions(+), 11 deletions(-)

commit 1b8cc5bb9a075e30e296c953aa3f8eaa2583b327
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Nov 17 12:28:33 2009 +0100

    Documentation fix (byte-compiled doesn't work in-place).

 README | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

commit 297b1a9dc28753378eac60255f25a66e030769ce
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 13 01:58:35 2009 +0100

    Bug fix: displaying signatures correctly in xref buffers.

 elisp/geiser-autodoc.el |  5 ++++-
 elisp/geiser-xref.el    | 12 ++++++++----
 2 files changed, 12 insertions(+), 5 deletions(-)

commit e1907222291894821960dba34f2c16db831673d6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 13 01:18:34 2009 +0100

    Guile: Support for multiple arities in autodoc.

 scheme/guile/geiser/doc.scm | 60 +++++++++++++++++++++++++++++------------------------
 1 file changed, 33 insertions(+), 27 deletions(-)

commit 6e0b3e61eb8aec477ba7b668778e831934682a90
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 13 00:12:35 2009 +0100

    Docs: Guile 1.9.5 required.

 README | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dab11d9578577b8b231a98e6a614cb5fc49c9a84
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Nov 13 00:07:54 2009 +0100

    Guile: bug fix: a macro-transformer is not a good arity info source.
    
    * scheme/guile/geiser/doc.scm (obj-args): producing always ... for macros.

 scheme/guile/geiser/doc.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 6ae51474d59444f44f7b363acbcbcefd0551cd5b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Nov 12 18:54:55 2009 +0100

    Bug fix: links in documentation buffers work again.
    
    * elisp/geiser-impl.el (with--geiser-implementation): macro was not
      setting the implementation environment correctly.

 elisp/geiser-impl.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit e42bfdb26e7ce33f80ed8dc501824431f57473cb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 22:03:52 2009 +0200

    PLT: autodoc: support for languages specified as libs and/or module forms.

 elisp/geiser-plt.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit a17dad508cc8ef98d0a35c017a2ebad6cbc55e92
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 10:05:44 2009 +0200

    Autodoc for identifier at point only when it's not an argument.

 elisp/geiser-syntax.el | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

commit 0a64ea424dcacf61d5b8ad42e1a064f27cb58e49
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 03:51:01 2009 +0200

    Silly micro-optimisitation.

 elisp/geiser-syntax.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 561fd4e8fd676a0e5b0a710d9234303673b34959
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 03:22:49 2009 +0200

    Autodoc fix: dots in arglists were causing a parsing error.

 elisp/geiser-syntax.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 883afcf36399a43c6b79d3be8c60ebadac0f92c8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 03:21:53 2009 +0200

    Cosmetics.

 elisp/geiser-autodoc.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit b007b8801197325f3bd157c383bdfcace0ff57fc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 02:34:21 2009 +0200

    PLT: Evaluation takes into account #lang forms.
    
    This is useful when visiting a file that has not been loaded: the
    evaluation namespace is provided by its #lang, if any.
    
    While i was at it, i also refactored the mess in geiser:load-file.

 elisp/geiser-plt.el          | 17 +++++++++++++----
 scheme/plt/geiser.ss         |  3 ++-
 scheme/plt/geiser/eval.ss    | 23 ++++++++++++-----------
 scheme/plt/geiser/modules.ss | 34 +++++++++++++++++++---------------
 4 files changed, 46 insertions(+), 31 deletions(-)

commit d56dfe6f1505b99f90a4978dffd0b592fef72a68
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Oct 15 02:29:58 2009 +0200

    PLT: autodoc: parsing of definitions with more than one form fixed.

 scheme/plt/geiser/autodoc.ss | 36 ++++++++++++++++++++++--------------
 1 file changed, 22 insertions(+), 14 deletions(-)

commit edbb67e675163d7a3cfbeaf9fcbcef3f44146d36
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Oct 10 01:49:49 2009 +0200

    Base R6RS elisp implementation.

 elisp/geiser-r6rs.el | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
 create mode 100644 elisp/geiser-r6rs.el

commit d3593a4dcb13f15b531cee7e71e61a1e1f604ba4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 27 23:51:18 2009 +0200

    Cosmetics.

 elisp/geiser-guile.el | 47 ++++++++++++++++++-----------------------------
 elisp/geiser-plt.el   | 45 ++++++++++++++++++---------------------------
 2 files changed, 36 insertions(+), 56 deletions(-)

commit fa57fec9e27da642c12244d097ae2da601f9a08d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 27 22:45:58 2009 +0200

    PLT: Small refactorings; rudimentary support for syntax-case arg name snarfing.

 scheme/plt/geiser/autodoc.ss | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit b8573ff1667349e87980fd1b37f48512d99449cf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 27 00:32:28 2009 +0200

    PLT: Ignoring errors during argument name scanning for autodoc.

 scheme/plt/geiser/autodoc.ss | 45 +++++++++++++++++++++++----------------------
 1 file changed, 23 insertions(+), 22 deletions(-)

commit 3b849eb2312f5ecc0ecb5a20fe574f8f69d4deb4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 27 00:29:28 2009 +0200

    PLT: autodoc arg names scanning: better case-lambda, syntax-rules added.

 scheme/plt/geiser/autodoc.ss | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit a47fe92e1f5729a9f80d22e8437fb6d961d411c4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Sep 27 00:28:23 2009 +0200

    Previous patch was broken.

 elisp/geiser-syntax.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 6b7ee97c7f0b5fead386ad8101ad0fdf9412f710
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 22:38:21 2009 +0200

    Internal fix: duplication of symbol at point in scan-sexps.

 elisp/geiser-syntax.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit f2f267955c46d110da4c75a5972f021a2c715a6c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 21:44:21 2009 +0200

    Multiple arity display, used by PLT backend (case-lambda).

 elisp/geiser-autodoc.el      | 60 +++++++++++++++++++++++++++++-----------------------
 elisp/geiser-doc.el          |  2 +-
 scheme/guile/geiser/doc.scm  | 10 ++++-----
 scheme/plt/geiser/autodoc.ss | 57 +++++++++++++++++++++++++++++--------------------
 4 files changed, 73 insertions(+), 56 deletions(-)

commit f67ef229256de7406666dd5ffe14c229bf0b2045
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 05:07:41 2009 +0200

    PLT: Bug fix in autodoc's argument name parsing.
    
    Definitions of the form (define (foo bar) (lambda ---) --) were not
    being matched correctly.

 scheme/plt/geiser/autodoc.ss | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit a9c8026ca23ae980e0288b4657567fc586673e3c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 04:25:13 2009 +0200

    Letting implementations define their own file pattern matching rules.

 elisp/geiser-impl.el | 8 +++++---
 elisp/geiser-plt.el  | 3 +++
 2 files changed, 8 insertions(+), 3 deletions(-)

commit f4bfd4dbd6e91b60a80be309ffa70b7aeb7870a9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 04:11:04 2009 +0200

    Bug fix: display-help function correctly invoked when available.

 elisp/geiser-doc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 574e4afbdf6f1ce1bf6c4e1fa73b7d4f5f264ece
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 03:18:25 2009 +0200

    PLT: Unsupported procedures listed.

 elisp/geiser-plt.el | 1 +
 1 file changed, 1 insertion(+)

commit 9b241873039c2cf817ccc94eaa5bdd3ca2cc470f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 03:17:55 2009 +0200

    New implementation method/variable: unsupported Geiser procedures.

 elisp/geiser-eval.el | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 3c1924595e1347644a8202a9cb5600a2a01367da
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 03:17:20 2009 +0200

    Bug fix: proper handling of implementation methods specified as variables.

 elisp/geiser-impl.el | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit ad7badc9d24289cd1a30fc0621120d48f6462c0c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 26 03:15:53 2009 +0200

    Bug fix: xref commands were always asking for the target procedure's name.

 elisp/geiser-xref.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d80c42a067f4eb70c9a4bc159a82912c76a99e74
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Sep 24 16:03:35 2009 +0200

    Assignment of ss files to plt as a customization.

 elisp/geiser-impl.el | 2 +-
 elisp/geiser-plt.el  | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

commit ee5b403d2d99ed6722063040a5328cf351b20144
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 23 22:37:55 2009 +0200

    Slightly more efficient symbol completion.

 elisp/geiser-completion.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ed48236fe7c336924ff4694275555649e9b269b5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 23 18:03:52 2009 +0200

    Guile: bug fix: evaluation works again (1.9.3 or better required).

 README                             |  6 +++---
 scheme/guile/geiser/evaluation.scm | 22 +++++++---------------
 2 files changed, 10 insertions(+), 18 deletions(-)

commit 46d6d573013661b3266ca3d0bd77b8a26a738eef
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Sep 23 15:53:43 2009 +0200

    Bug fix: correct generation of per implementation switch-to functions.

 elisp/geiser-impl.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit b08c317b978e14b1b4c1dfd07ccc11f6efccb6d5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 22 23:56:55 2009 +0200

    Clarifying that Modified BSD is the same as BSD3.

 COPYING | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ac2066b6f439b2497e761fbd99c9675db0b03bbd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 22 22:43:28 2009 +0200

    New implementation registration mechanism, for the elisp side of things.
    
    Implementations must invoke define-geiser-implementation with an
    appropriate set of methods. Simple inheritance is supported. Each
    geiser module defines and registers the method names it uses.

 elisp/geiser-completion.el |  18 ++-
 elisp/geiser-custom.el     |   6 +-
 elisp/geiser-debug.el      |   9 +-
 elisp/geiser-doc.el        |  17 ++-
 elisp/geiser-eval.el       |  25 ++--
 elisp/geiser-guile.el      |  25 ++--
 elisp/geiser-impl.el       | 367 ++++++++++++++++++++++++++---------------------------
 elisp/geiser-mode.el       |   5 +-
 elisp/geiser-plt.el        |  15 +++
 elisp/geiser-reload.el     |   3 -
 elisp/geiser-repl.el       |  33 +++--
 elisp/geiser.el            |   2 +-
 12 files changed, 291 insertions(+), 234 deletions(-)

commit 8588781981a686dbd921c377fa9887bcd74728af
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Sep 15 00:30:06 2009 +0200

    Guile: define-module forms are now individually evaluable (e.g. using C-M-x or C-x C-e).

 elisp/geiser-guile.el | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit b039e7aa8dc4207e4a0da34fe684265fed1b22e3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 14 02:08:19 2009 +0200

    Irrelevant doc fix.

 INSTALL | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0a2d332daed0c93251058cb88495ffe8157e39db
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 12 23:30:44 2009 +0200

    Dog food: using the scheme reader for parsing evaluation results.

 elisp/geiser-eval.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit b131c3e5c1e954c9ce3b1324937ba89a54bc66d1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 12 23:26:22 2009 +0200

    New function: `geiser-syntax--read-from-string', analogous to elisp's `read-from-string'.

 elisp/geiser-syntax.el | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 41dbd0eda13fb41706c74174f13434e22ffe6843
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Sep 12 23:25:22 2009 +0200

    Bug fix: we were not correctly detecting dot as a token in the scheme reader.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d5dfd349a4126324ff5fb41a2c20edf8725edda9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 22:01:14 2009 +0200

    Reload: we now remember user customizations and restore them during geiser-reload.

 elisp/geiser-autodoc.el |  6 +++---
 elisp/geiser-custom.el  | 17 +++++++++++++++++
 elisp/geiser-edit.el    |  2 +-
 elisp/geiser-guile.el   |  8 ++++----
 elisp/geiser-impl.el    |  7 ++++---
 elisp/geiser-mode.el    |  6 +++---
 elisp/geiser-plt.el     |  6 +++---
 elisp/geiser-reload.el  |  5 +++--
 elisp/geiser-repl.el    | 14 +++++++-------
 9 files changed, 45 insertions(+), 26 deletions(-)

commit bf4b717791be199ce21a0c36b4b7baf3f8511f66
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:38:46 2009 +0200

    AUTHORS fix.

 AUTHORS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 993d50dc005b09e0674916de146f25867c335556
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:37:47 2009 +0200

    COPYING introduction.

 COPYING | 5 +++++
 1 file changed, 5 insertions(+)

commit e93016f0c1ae4af52f18e44673e6bdcf3492ee1a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:34:00 2009 +0200

    Un-running to conclusions.

 THANKS | 4 ----
 1 file changed, 4 deletions(-)

commit 56b7aec90d4a3dc9a3bd7cfc5b9372338e059538
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:24:30 2009 +0200

    BSD relicensing: Guile code.

 scheme/guile/geiser/completion.scm | 29 +++++++----------------------
 scheme/guile/geiser/doc.scm        | 27 ++++++---------------------
 scheme/guile/geiser/emacs.scm      | 27 ++++++---------------------
 scheme/guile/geiser/evaluation.scm | 27 ++++++---------------------
 scheme/guile/geiser/modules.scm    | 27 ++++++---------------------
 scheme/guile/geiser/utils.scm      | 27 ++++++---------------------
 scheme/guile/geiser/xref.scm       | 27 ++++++---------------------
 7 files changed, 43 insertions(+), 148 deletions(-)

commit 9a77f714e539723a8149302970b38f72b5f53752
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:20:33 2009 +0200

    BSD relicensing: PLT code.

 scheme/plt/geiser.ss             | 25 ++++++-------------------
 scheme/plt/geiser/completions.ss | 27 ++++++---------------------
 scheme/plt/geiser/eval.ss        | 27 ++++++---------------------
 scheme/plt/geiser/locations.ss   | 27 ++++++---------------------
 scheme/plt/geiser/modules.ss     | 23 ++++++-----------------
 scheme/plt/geiser/utils.ss       | 27 ++++++---------------------
 6 files changed, 36 insertions(+), 120 deletions(-)

commit cad3f30d164ad89a0cd1444dd3f948072031ac3a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:16:08 2009 +0200

    BSD relicensing: elisp code.

 elisp/geiser-autodoc.el      | 26 ++++++--------------------
 elisp/geiser-base.el         | 23 +++++------------------
 elisp/geiser-company.el      | 21 ++++++---------------
 elisp/geiser-compile.el      | 25 ++++++-------------------
 elisp/geiser-completion.el   | 27 +++++++--------------------
 elisp/geiser-connection.el   | 25 +++++++------------------
 elisp/geiser-custom.el       | 27 +++++++--------------------
 elisp/geiser-debug.el        | 28 +++++++---------------------
 elisp/geiser-doc.el          | 27 +++++++--------------------
 elisp/geiser-edit.el         | 29 ++++++++---------------------
 elisp/geiser-eval.el         | 25 +++++++------------------
 elisp/geiser-guile.el        | 25 ++++++-------------------
 elisp/geiser-impl.el         | 26 ++++++--------------------
 elisp/geiser-log.el          | 23 ++++++-----------------
 elisp/geiser-mode.el         | 26 ++++++--------------------
 elisp/geiser-plt.el          | 25 ++++++-------------------
 elisp/geiser-popup.el        | 26 ++++++--------------------
 elisp/geiser-reload.el       | 21 ++++++---------------
 elisp/geiser-repl.el         | 27 ++++++---------------------
 elisp/geiser-syntax.el       | 27 +++++++--------------------
 elisp/geiser-version.el.in   | 10 +++++++++-
 elisp/geiser-xref.el         | 25 ++++++-------------------
 elisp/geiser.el              | 29 +++++++----------------------
 scheme/plt/geiser/autodoc.ss | 23 ++++++-----------------
 24 files changed, 156 insertions(+), 440 deletions(-)

commit 69ab3ff61aa1d31a571710d8bc468ed41203bfe9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Sep 11 01:15:56 2009 +0200

    BSD relicensing: COPYING.

 COPYING | 697 +++---------------------------------------------------------------------
 1 file changed, 23 insertions(+), 674 deletions(-)

commit 4de073bacd80820803d129fd7f04e2c210f20442
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 7 01:24:22 2009 +0200

    Bug fix: run-geiser and friends now always create a new REPL.

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit f5f3587b6f6a6d7375ff9f715652292070915bab
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 7 00:42:58 2009 +0200

    Fix for regression in autodoc: it works again when point is inside a string.

 elisp/geiser-syntax.el | 1 +
 1 file changed, 1 insertion(+)

commit 8f5e58189692663901266dc83f2e2b4e47803b8d
Merge: 61edb25 3a80af0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 7 00:23:17 2009 +0200

    Merge branch 'devel'

commit 3a80af06f2b9272db379fed3b5b659ecfeeceb70
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Sep 7 00:17:12 2009 +0200

    Scheme reader improvements: #<>, #||# and other bits.

 elisp/geiser-syntax.el | 62 +++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 44 insertions(+), 18 deletions(-)

commit 8d534314354d6858ec72f483b3e37cc50daaf8d8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 30 23:53:19 2009 +0200

    Improved local names detection (both implementation- and functional-wise).

 elisp/geiser-syntax.el | 66 +++++++++++++++++++++++++++++-----------------------------
 1 file changed, 33 insertions(+), 33 deletions(-)

commit e63eed7c83ba3d1e3a3b29aaca7b336d4a635a39
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 30 11:52:15 2009 +0200

    Tagging keywords as such in the scheme reader, for later spotting of
    active argument in autodoc.

 elisp/geiser-syntax.el | 59 +++++++++++++++++++++++++++++++---------------------------
 1 file changed, 32 insertions(+), 27 deletions(-)

commit 2c6f07d95935668a82bbd549901da6d0949fbbe7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 30 11:19:09 2009 +0200

    Biting the bullet: a simple, permissive, scheme reader.
    
    Currently put to (let's hope, good) use for context parsing in autodoc
    and locals discovery (internal defines are recognised now).

 elisp/geiser-autodoc.el |   9 +--
 elisp/geiser-syntax.el  | 209 +++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 128 insertions(+), 90 deletions(-)

commit 4308f5bf8babe700df73b384e91c2964ef431e5c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Aug 27 11:43:12 2009 +0200

    Small configure tweaks.

 autogen.sh   | 2 +-
 configure.ac | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

commit b75fa717536a55a7571abfd1aafe53bc73bb5363
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Aug 27 00:05:13 2009 +0200

    Better detection of locals (internal defines).
    
     - The implementation is still buggy, though, because it uses the
       elisp reader, which bails at some scheme syntaxes (e.g. chars)

 elisp/geiser-syntax.el | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

commit 54ef9eae095606180a137bf2d2c11086625a7088
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 26 15:13:42 2009 +0200

    Quicker metadata display in company mode.

 elisp/geiser-company.el | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit cee169c2de13d30f213b03578e70ca7c370e2684
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 26 12:23:53 2009 +0200

    Company's go to location working also for locations in same file.

 elisp/geiser-company.el | 10 ++++++----
 elisp/geiser-edit.el    | 16 +++++++++-------
 2 files changed, 15 insertions(+), 11 deletions(-)

commit 2f5a1cce9e66e6f931749e5d3df6fe3fb220ad1f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 26 00:58:36 2009 +0200

    Slightly faster autodoc.

 elisp/geiser-autodoc.el | 37 ++++++++++++++++++++-----------------
 1 file changed, 20 insertions(+), 17 deletions(-)

commit 1f933f075530a5397c6413cae307b3c372ae9a53
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 26 00:57:58 2009 +0200

    Company: handling correctly the mode lighter and autodoc interaction.

 elisp/geiser-company.el | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

commit 98e199daf7b1a56179b670c192c7d244fcb2b323
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 25 15:30:51 2009 +0200

    Slightly better autodoc caching (probably needs an overhaul, though).

 elisp/geiser-autodoc.el | 33 ++++++++++++++++++---------------
 elisp/geiser-company.el |  8 ++++----
 elisp/geiser-doc.el     |  3 +--
 3 files changed, 23 insertions(+), 21 deletions(-)

commit f52ac22eb1c09f7eae9d53d7d12d15edac56f942
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 25 01:58:55 2009 +0200

    Now this is cool: support for company mode.

 README                     |  11 ++++++
 elisp/Makefile.am          |   1 +
 elisp/geiser-autodoc.el    |   6 ++-
 elisp/geiser-company.el    | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-completion.el |   8 ++--
 elisp/geiser-edit.el       |  11 +++---
 elisp/geiser-mode.el       |   7 ++++
 elisp/geiser-reload.el     |   1 +
 elisp/geiser-repl.el       |   7 ++++
 9 files changed, 153 insertions(+), 10 deletions(-)
 create mode 100644 elisp/geiser-company.el

commit 479493f40a1666cc7fb2de8f855badc7106b762b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 24 03:22:12 2009 +0200

    Taking into account those ugly square brackets while scanning locals.

 elisp/geiser-syntax.el | 20 +++++++++++++-------
 1 file changed, 13 insertions(+), 7 deletions(-)

commit b652ff751b5c5e4210195cadbac0b404e3fe402e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 23:19:08 2009 +0200

    Putting ChangeLog to good use.

 .gitignore  | 1 -
 ChangeLog   | 6 ++++++
 Makefile.am | 2 +-
 autogen.sh  | 4 ----
 4 files changed, 7 insertions(+), 6 deletions(-)
 create mode 100644 ChangeLog

commit 45efee6e5addfe3677b218abda5fef244ec767c9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 22:57:11 2009 +0200

    autogen.sh

 autogen.sh | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100755 autogen.sh

commit 833d2df2593dd391f3f88f722d90f6c64ac83ea5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 22:35:24 2009 +0200

    fixes for geiser-unload.

 elisp/geiser-impl.el | 9 ++++-----
 elisp/geiser-mode.el | 4 ++++
 2 files changed, 8 insertions(+), 5 deletions(-)

commit bd998e8d6ed692a6d08d5f06f2d7dd55191e7a20
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 20:22:22 2009 +0200

    geiser-reload works again (was broken for installed geiser).

 elisp/geiser-base.el   |  3 +--
 elisp/geiser-reload.el | 36 +++++++++++++++++-------------------
 2 files changed, 18 insertions(+), 21 deletions(-)

commit 1762b7b9b30ab42e878f9a3887a81f3133417062
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 15:48:57 2009 +0200

    Automake tweak: geiser-install.el belongs to CLEANFILES.

 elisp/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit bc740d87f846f372f06263298495a9ff1506e4c7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 15:44:02 2009 +0200

    Buglet in autodoc's argument display.

 elisp/geiser-autodoc.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 3bf101346960ab33261354504102a4de642ed445
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 15:22:07 2009 +0200

    Thanks, many THANKS.

 INSTALL     |  4 +++-
 Makefile.am |  2 ++
 THANKS      | 21 +++++++++++++++++++++
 3 files changed, 26 insertions(+), 1 deletion(-)
 create mode 100644 THANKS

commit dfc502402d43065e182d5a21f55514514de87e8b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 05:18:39 2009 +0200

    Standardese filling.

 AUTHORS |   4 +
 INSTALL | 316 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 README  |  57 ++++++++++---
 3 files changed, 364 insertions(+), 13 deletions(-)

commit ace9896b831c1d1b458ca2504837009d8fadc600
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 03:11:40 2009 +0200

    Automatic ChangeLog generation during make dist.

 .gitignore  | 1 +
 Makefile.am | 5 ++++-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 11e52e18251f6c2c5a9c7c37bbd4a1787e84b282
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 02:59:09 2009 +0200

    Fixes for all byte-compilation warnings.

 elisp/geiser-autodoc.el    |  4 ++--
 elisp/geiser-base.el       | 20 ++-----------------
 elisp/geiser-completion.el |  6 +++---
 elisp/geiser-doc.el        |  2 +-
 elisp/geiser-edit.el       |  5 ++++-
 elisp/geiser-eval.el       | 38 +++++++++++++++++------------------
 elisp/geiser-guile.el      |  3 +++
 elisp/geiser-impl.el       | 58 ++++++++++++++++++++++++++++--------------------------
 elisp/geiser-log.el        |  2 ++
 9 files changed, 66 insertions(+), 72 deletions(-)

commit c5b6f124e8197c4e20278fb3f24086ee56f0e529
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Aug 23 02:58:13 2009 +0200

    Autotoolification.

 .gitignore                 | 11 +++++++
 AUTHORS                    |  0
 INSTALL                    |  0
 Makefile.am                |  1 +
 NEWS                       |  0
 configure.ac               | 33 +++++++++++++++++++
 elisp/Makefile.am          | 31 ++++++++++++++++++
 elisp/geiser-install.el.in |  5 +++
 elisp/geiser-reload.el     | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-version.el.in | 12 +++++++
 elisp/geiser.el            | 77 +++++--------------------------------------
 scheme/Makefile.am         | 16 +++++++++
 12 files changed, 213 insertions(+), 69 deletions(-)
 create mode 100644 AUTHORS
 create mode 100644 INSTALL
 create mode 100644 Makefile.am
 create mode 100644 NEWS
 create mode 100644 configure.ac
 create mode 100644 elisp/Makefile.am
 create mode 100644 elisp/geiser-install.el.in
 create mode 100644 elisp/geiser-reload.el
 create mode 100644 elisp/geiser-version.el.in
 create mode 100644 scheme/Makefile.am

commit f8760a999fc89f79d9570029b9ec593316add2f9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Aug 20 02:58:01 2009 +0200

    Bug fix: bogus regexp.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1260755d66427531dbdbb01b03b060486b037ed5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Aug 19 23:44:54 2009 +0200

    C-c k == nuke repl

 README               | 37 ++++++++++++++++++-------------------
 elisp/geiser-repl.el |  4 +++-
 2 files changed, 21 insertions(+), 20 deletions(-)

commit be62a84152d62a0658ee61fa46d035f676d46c27
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 18 23:46:31 2009 +0200

    REPLs: using compile-shell-minor-mode.

 elisp/geiser-repl.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 69b30de19af8cc0d58fa177ef9d40057c15f6951
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 18 23:46:05 2009 +0200

    PLT: bug fix in (module) recognition.

 elisp/geiser-plt.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a7373cd2da209e8a58b35060c0b29bd18398957
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 18 06:16:57 2009 +0200

    Yet another deklugdification: locals scanning moved to elisp.
    
    ... and say goodbye to the ugly parse partial sexp, reducing not only
    sloppy code, but also duplication and data transfers.

 elisp/geiser-completion.el         |   5 +--
 elisp/geiser-syntax.el             | 101 ++++++++++++++++++++++++---------------------
 scheme/guile/geiser/completion.scm |  25 ++---------
 scheme/plt/geiser/completions.ss   |  27 ++----------
 4 files changed, 62 insertions(+), 96 deletions(-)

commit 203c989e07b43afb34f2c795cbda8126e9c0d327
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 17 16:26:38 2009 +0200

    Leftover removed.

 scheme/guile/geiser/doc.scm | 2 --
 1 file changed, 2 deletions(-)

commit 18db590dece0f88c3f2bd850a3158bb50605e2c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 17 16:23:45 2009 +0200

    Well, i said that it was better, not that it was perfect.
    
    Autodoc buglets and support for displaying module variables too.

 elisp/geiser-autodoc.el      | 54 ++++++++++++++++++++++++++--------------------------
 elisp/geiser-doc.el          |  5 ++++-
 elisp/geiser-syntax.el       | 20 ++++++++++---------
 scheme/guile/geiser/doc.scm  | 16 ++++++++++------
 scheme/plt/geiser/autodoc.ss |  6 ++----
 5 files changed, 54 insertions(+), 47 deletions(-)

commit 283e6f040449bb4f740991956007332c48308b38
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 17 04:18:02 2009 +0200

    Simpler, more correct and efficient autodoc implementation.
    
    Not that it was difficult: it's replacing an ugly kludge.

 elisp/geiser-autodoc.el      | 148 ++++++++++++++++++++++++++-------------------------
 elisp/geiser-syntax.el       |  27 ++++++++++
 scheme/guile/geiser/doc.scm  |  85 ++++++++---------------------
 scheme/plt/geiser/autodoc.ss |  97 +++++++++------------------------
 4 files changed, 149 insertions(+), 208 deletions(-)

commit 9d64bcb33f7ac1b3a06220842d04ce3c0534948e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Aug 11 15:44:54 2009 +0200

    autodoc: better emacs display for opt/key markers.

 elisp/geiser-autodoc.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit db34b16737120ac0c6951c32b8d1aa838491cf84
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Aug 10 15:35:59 2009 +0200

    Guile: fix for rest marker in autodoc.

 scheme/guile/geiser/doc.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 94be6173b640411e8205778fc7e080f6fbdac9dc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Aug 7 00:11:52 2009 +0200

    kludgy fix for opt/key/rest markers in autodoc

 elisp/geiser-autodoc.el      | 6 +++---
 scheme/guile/geiser/doc.scm  | 6 +++---
 scheme/plt/geiser/autodoc.ss | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

commit d3df979d3e02bc68c36a9b243881a3ad638e3af9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jul 9 04:45:10 2009 +0200

    Guile: unbreaking evaluation.

 scheme/guile/geiser/evaluation.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 81766b3043a4f14a777affe5bc0b76109ae8ea0f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jul 6 23:47:00 2009 +0200

    Stray paren killed.

 elisp/geiser-eval.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 710d0cec8854a4e89f4948d49e614f286913f711
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jul 2 05:29:04 2009 +0200

    Simpler, nicer, more efficient handling of evaluation results. It
    comes with a pony too.

 elisp/geiser-connection.el         |  1 -
 elisp/geiser-debug.el              | 10 ++++++---
 elisp/geiser-eval.el               |  9 +++++++-
 elisp/geiser-syntax.el             | 10 ---------
 scheme/guile/geiser/evaluation.scm | 51 ++++++++++++++++++++++------------------------
 scheme/plt/geiser/eval.ss          |  8 ++++++--
 6 files changed, 45 insertions(+), 44 deletions(-)

commit ba38e61e768a5e2b6ccdebc09262e3186a8cf15b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 29 00:27:28 2009 +0200

    PLT: Better load/compile file results reporting.

 scheme/plt/geiser/eval.ss | 17 ++++++-----------
 1 file changed, 6 insertions(+), 11 deletions(-)

commit 25eb14784cc57ee585fb2eca4437caad243eee59
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Jun 29 00:08:44 2009 +0200

    Safer handling of file line and columns in emacs.

 elisp/geiser-edit.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit d0c74836bd62ec7adb853e8239af4005c1801aaf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 28 21:47:49 2009 +0200

    Bug fix: initialisation loop removed.

 elisp/geiser-impl.el | 13 ++++++++-----
 elisp/geiser-repl.el |  7 ++++---
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 870d60071b8bb7d56bb3c9433b8b4b07d8206a60
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 20 22:04:19 2009 +0200

    REPL improvements: bailing out earlier on startup abort; C-c z DTRT
    for a running REPL.

 elisp/geiser-repl.el | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

commit 54bcf1930401e3fca5e132914923efa6fe4e4b3d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 20 09:56:59 2009 +0200

    Auxiliary function.

 elisp/geiser-impl.el | 3 +++
 1 file changed, 3 insertions(+)

commit ed141a327f13d61f21b4d57bffe4f6c27e5ab93f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 20:44:32 2009 +0200

    New user command to unregister Scheme implementations.

 elisp/geiser-impl.el | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

commit b21ba5e786a4ff9a6dc9ccc76e217daf349082d9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 17:27:31 2009 +0200

    Bug fix.

 elisp/geiser-impl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4487bd0759d997df25b05053b9044dfc056124e1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 17:26:16 2009 +0200

    User command to register scheme implementations (geiser-register-implementation).

 elisp/geiser-impl.el | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit acd64c5d448a614823c296a3e099823a706cb7e9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 17:03:30 2009 +0200

    Registered implementations are loaded by default.

 elisp/geiser-impl.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 64800ae4fa27b88ca8ee6c58d7edb0056e71ade6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 17:03:10 2009 +0200

    Better display of evaluation results.

 elisp/geiser-debug.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 841766449b9dc14d40186a67cdceda26fc6ca4ff
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 16:52:03 2009 +0200

    Guile: backtrace buttonization.

 elisp/geiser-guile.el         | 38 ++++++++++++++++++++++++++++++++++++++
 scheme/guile/geiser/emacs.scm |  3 ++-
 scheme/guile/geiser/xref.scm  |  9 ++++++++-
 3 files changed, 48 insertions(+), 2 deletions(-)

commit d2e8efd5b449bddaad5b416cb3634532a235576d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Jun 19 16:51:31 2009 +0200

    Directory-specific implementations.

 elisp/geiser-impl.el | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit a16ac6bd5df86e3541892982d7694f7c1385c5e9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 18 17:41:18 2009 +0200

    PLT: Bug fix in implementation guessing.

 elisp/geiser-plt.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 210bae902ad7450d1284e27672526a6d7f95ad94
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 18 17:30:23 2009 +0200

    Will i ever get initialisation right?

 elisp/geiser-impl.el |  6 +++++-
 elisp/geiser.el      | 19 +++----------------
 2 files changed, 8 insertions(+), 17 deletions(-)

commit 553ed51ad792d32215098fe0384f098314238b6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Jun 18 04:51:07 2009 +0200

    Initialisation fixes.
     - Honouring geiser-impl-installed-implementations
     - Missing autoloads for customization groups added

 elisp/geiser.el | 25 +++++++++++--------------
 1 file changed, 11 insertions(+), 14 deletions(-)

commit 75797be249aeae5b5f65850a5c2fe05e855aa1f8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 03:25:44 2009 +0200

    Refactoring.

 elisp/geiser-plt.el | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

commit 9ab8feaa541efe3ee223c8d18797ea02be3c5ff9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 03:14:45 2009 +0200

    PLT: buttonize errors implemented.

 elisp/geiser-plt.el | 39 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

commit 38cf417cc36dc24e0d96681c5288ff092f1750c0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 03:14:07 2009 +0200

    Auxiliary functions to insert error links.

 elisp/geiser-edit.el | 39 ++++++++++++++++++++++++++++++++++++---
 1 file changed, 36 insertions(+), 3 deletions(-)

commit e582b04710dbbdb84ad9df350e3feb29dcad3c5a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 03:13:38 2009 +0200

    Implementation-specific backtrace display.

 elisp/geiser-debug.el | 11 ++++++++---
 elisp/geiser-impl.el  |  3 +++
 elisp/geiser.el       |  2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

commit 7d43df1ae0815171e22637ac0698a95039396acd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 03:12:33 2009 +0200

    Whitespace.

 elisp/geiser-connection.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 184fd00d6f3bd1ca3ad0e6c1d93731d649668f4a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 01:57:36 2009 +0200

    PLT: Fixing the fix.

 scheme/plt/geiser/eval.ss | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit 2045e7b4f66685dc1beb1159900e91df3195cc99
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 00:53:36 2009 +0200

    Circular dependencies between elisp modules eliminated.

 elisp/geiser-doc.el  | 16 +++++-----------
 elisp/geiser-impl.el | 12 +++---------
 elisp/geiser.el      |  4 ++--
 3 files changed, 10 insertions(+), 22 deletions(-)

commit 397bb86ecd17794b220c6b6c81fe1b0f66c19ba6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 17 00:05:34 2009 +0200

    Whitespace.

 elisp/geiser-doc.el | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 70ffe7d5bb59cbd442b5cf84f8e7c985bfda0ee8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 16 23:15:16 2009 +0200

    Fixes in retort parsing.

 elisp/geiser-connection.el | 4 ++--
 elisp/geiser-impl.el       | 3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 547363acef3c40350382bea812a533c6dbd532cc
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 16 23:14:34 2009 +0200

    PLT: Output included in retorts.

 scheme/plt/geiser/eval.ss | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 230ca2d12926ecda1fe2946e2726079fcbd05ef4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 16 22:36:15 2009 +0200

    Elimination of dead code in stack trace display.

 elisp/geiser-debug.el | 46 +++++++++++++++-------------------------------
 elisp/geiser-eval.el  |  3 +--
 2 files changed, 16 insertions(+), 33 deletions(-)

commit 1dd9eeb3cb80260738a5683e9a41b6f66acd7460
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Jun 16 22:35:21 2009 +0200

    Better parsing of scheme retorts in the Emacs end.

 elisp/geiser-connection.el | 10 +++++++---
 elisp/geiser-syntax.el     | 21 ++++-----------------
 2 files changed, 11 insertions(+), 20 deletions(-)

commit 3c8e22e4aaa3cbac830d4a37af6db3395082fb66
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 14 22:19:36 2009 +0200

    Fixes in geiser-reload (unload forcibly and pick repl implementations).

 elisp/geiser-impl.el | 2 +-
 elisp/geiser-repl.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit c042571626977f12916d59966ea94ded44d8cf32
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 14 22:05:23 2009 +0200

    Guile: Bug fix in the latest evaluation code changes.

 scheme/guile/geiser/evaluation.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ee5412e57af6f22b623cbe772fec2f0af91038d7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Jun 14 01:23:41 2009 +0200

    Guile: better stack trace display.

 scheme/guile/geiser/evaluation.scm | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

commit 61edb258a45d5ad00ee907594c6dfbcd21d93485
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Jun 13 03:50:23 2009 +0200

    Guile: rewriting stack trace captures - not yet complete.

 elisp/geiser-connection.el         |  3 +-
 elisp/geiser-debug.el              | 16 ++++-----
 elisp/geiser-guile.el              |  3 +-
 elisp/geiser-syntax.el             | 38 ++++++++++++---------
 scheme/guile/geiser/evaluation.scm | 84 ++++++++++++----------------------------------
 5 files changed, 54 insertions(+), 90 deletions(-)

commit 56598777f2c0a50ca78065d284f2d9c8a9c4fb98
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Jun 10 21:08:34 2009 +0200

    Share scheme-indent-function tweaks across implementations.

 elisp/geiser-base.el   |  5 -----
 elisp/geiser-plt.el    | 44 --------------------------------------------
 elisp/geiser-syntax.el | 51 ++++++++++++++++++++++++++++++++++++++++++++++-----
 3 files changed, 46 insertions(+), 54 deletions(-)

commit 26929de58ec387bcdac0010067c310dbc6ff0d2a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 25 23:18:55 2009 +0200

    module-children -> module-exports.

 elisp/geiser-doc.el             | 10 +++++-----
 scheme/guile/geiser/emacs.scm   |  2 +-
 scheme/guile/geiser/modules.scm |  4 ++--
 scheme/plt/geiser.ss            |  4 ++--
 scheme/plt/geiser/modules.ss    |  4 ++--
 5 files changed, 12 insertions(+), 12 deletions(-)

commit 2b5abe839c5cbf34fa19e2298366973c4ec812f9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 25 04:36:32 2009 +0200

    README tweaks and updates.

 README | 49 +++++++++++++++++++++++++------------------------
 1 file changed, 25 insertions(+), 24 deletions(-)

commit 0870749738a8473678f7021a2b9bed0f90080350
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 25 04:29:48 2009 +0200

    Fix to documentation browser's switch to repl keybinding.

 elisp/geiser-doc.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ac726e6c49846b920466650fe9f3b57b1eb50e20
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 25 03:39:47 2009 +0200

    PLT: New help functionality:
    
      - Using our own help function, which takes care of trying on not yet
        loaded modules.
      - Module children implemented.

 elisp/geiser-plt.el          |  4 ++--
 scheme/plt/geiser.ss         |  6 +++++-
 scheme/plt/geiser/autodoc.ss |  9 +++++++--
 scheme/plt/geiser/modules.ss | 22 ++++++++++++++++++++--
 4 files changed, 34 insertions(+), 7 deletions(-)

commit 76d5f69c79182687225248a7a0e424ef990daafd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 25 03:36:51 2009 +0200

    Bug fix and a bit of refactoring in geiser-doc.el.

 elisp/geiser-doc.el | 22 +++++++++-------------
 1 file changed, 9 insertions(+), 13 deletions(-)

commit 2894d527589de0020d4ccacbb883e0b8823ee4ae
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 20:59:00 2009 +0200

    Unintended change undone.

 elisp/geiser-plt.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 48099d99f38b67667e680263a65a84990b741078
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 20:32:38 2009 +0200

    Small nit.

 scheme/plt/geiser/modules.ss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 1036c4ca03505436221ab5bace389c8ad000b867
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 20:20:24 2009 +0200

    PLT: correct (or, at least, better) computation of module names.

 elisp/geiser-plt.el | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit aa0126ced4d1b35d7e8c7ea5e49637dbed997bb5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 20:19:18 2009 +0200

    Elisp leftovers trimmed.

 elisp/geiser-completion.el |  3 +--
 elisp/geiser-eval.el       |  2 +-
 elisp/geiser-syntax.el     | 13 -------------
 3 files changed, 2 insertions(+), 16 deletions(-)

commit 18933e07da1f255fe30d236cd1d525373084f0d0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 20:18:10 2009 +0200

    Bug fix: delete results buffers only when a new request is available.

 elisp/geiser-connection.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 908d883f98c06a5c211efdbebbb0f27cde335fc8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 24 01:42:45 2009 +0200

    PLT: customizable collection directories.

 elisp/geiser-plt.el | 6 ++++++
 1 file changed, 6 insertions(+)

commit 32ba9dcfb9db2ef8575e81211fe8681a84b46bf0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 23 22:20:53 2009 +0200

    Guile: customizable load path.

 elisp/geiser-guile.el | 7 +++++++
 1 file changed, 7 insertions(+)

commit 85e02446e1c721049d789c4d2f86d6bf96f46c26
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed May 20 22:40:36 2009 +0200

    Fixes for module names reading and evaluation result display.

 elisp/geiser-completion.el | 13 ++++++-------
 elisp/geiser-debug.el      |  2 +-
 elisp/geiser-edit.el       |  2 +-
 elisp/geiser-guile.el      |  5 -----
 4 files changed, 8 insertions(+), 14 deletions(-)

commit a628778c084178653570ea423d530324fb0ce07c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 18 01:41:26 2009 +0200

    Autodoc: correct detection of start of string in argument highlighting.

 elisp/geiser-syntax.el | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit c3c97cec142491dbaca7b295a9f5a2951cdd7e69
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 17 21:34:00 2009 +0200

    Read-only-ness of REPL prompt customizable.

 elisp/geiser-repl.el | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit eddeeb5a3614c40470c7abaf55993d5d91cbdd49
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 16 00:34:23 2009 +0200

    <home> as an alias of bol in the REPL.

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit 588b11871548e3eb8712cca5dc710462e34d8e03
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 16 00:31:20 2009 +0200

    PLT: A bit more sensible prompt format.

 elisp/geiser-plt.el          | 2 +-
 scheme/plt/geiser/eval.ss    | 2 +-
 scheme/plt/geiser/modules.ss | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 774235f8f08166dbe1311047235fa160a37a3d08
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 16 00:12:07 2009 +0200

    Automatic setup when loading geiser.el (explicit call to geiser-setup
    no longer needed). README updates.

 README          | 124 +++++++++++++++++++++++++++++++---------------------------------
 elisp/geiser.el |   5 +++
 2 files changed, 66 insertions(+), 63 deletions(-)

commit 2b0aefb48c0a4fec12466122d9b54b1894824ee3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 16 00:01:21 2009 +0200

    PLT: Correct identification of explicit module definitions.

 elisp/geiser-plt.el | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit 50d81a75a81994e09b4fa52d1e34bef45ac21f9c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 15 15:27:20 2009 +0200

    Bug fix: compile-and-go-to-repl should work now.

 elisp/geiser-mode.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 3e97539c10bee3aba376b37e988d2570f071965c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 15 14:12:01 2009 +0200

    Bug fix: smart tab mode was broken.

 elisp/geiser-completion.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e56277b22d668b6b46222d89054cc4842a1c0239
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 15 13:42:41 2009 +0200

    PLT: Bug fix: correctly handle explicit module definitions.

 elisp/geiser-plt.el          |  2 +-
 scheme/plt/geiser/modules.ss | 18 +++++++++++-------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 6b108fd3183192088ce94110b74d757360a29702
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 15 02:19:07 2009 +0200

    Bug fix: eval-and-go family of commands work again.

 elisp/geiser-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5a7cc108021208cd9b90ec4258ff2dfd36f7832
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 15 00:47:05 2009 +0200

    PLT: Initialization fixes and cleanups.
    
     * Check for required minimum version (4.1.5.5).
     * Colons instead of dashes in exported identifiers.
     * Unneeded requires are gone.
     * All significant code inside the geiser module.

 README               |  2 +-
 elisp/geiser-plt.el  |  2 +-
 scheme/plt/geiser.ss | 56 ++++++++++++++++++++++++++++----------------------------
 3 files changed, 30 insertions(+), 30 deletions(-)

commit 783ab50f4cba76b45fe1cacac66a153331aafb13
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu May 14 13:07:54 2009 +0200

    Fixing the mess during initialization.

 elisp/geiser-guile.el  | 6 ------
 elisp/geiser-impl.el   | 7 +------
 elisp/geiser-plt.el    | 6 ------
 elisp/geiser-syntax.el | 1 +
 elisp/geiser.el        | 8 +++++++-
 5 files changed, 9 insertions(+), 19 deletions(-)

commit 76441ec53587fbbfb7176eb280461f4bc2e1519b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu May 14 00:03:01 2009 +0200

    Dead code.

 elisp/geiser-larceny.el | 118 --------------------------------------------------------
 1 file changed, 118 deletions(-)
 delete mode 100644 elisp/geiser-larceny.el

commit f379e2ab5bfebe8e1c0bbd0da57ff83e7dc0cd03
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu May 14 00:00:22 2009 +0200

    README updates.

 README | 49 ++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 44 insertions(+), 5 deletions(-)

commit 091d1cdd2c4d532f651dc6e2ba1a09e023f3e7d6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed May 13 23:15:27 2009 +0200

    Bug fix: correct guessing for installed implementations.

 elisp/geiser-impl.el | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

commit 369b3e464bded04224ad63416584ba61e798b293
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed May 13 23:14:47 2009 +0200

    Bug fix: current buffer's impl is used now in switch-to-geiser.

 elisp/geiser-repl.el | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

commit 440b40c47d553d53ece268e2988123feaadbb2d6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 02:32:30 2009 +0200

    Bug fix: be aware of square brackets when retrieving context form.

 elisp/geiser-syntax.el | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 273866952c4037d9585dd97c42c822bc6c40187e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 02:25:43 2009 +0200

    PLT: Support in autodoc for curried definitions.

 scheme/plt/geiser/autodoc.ss | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 4525bffdc526709eb94d42051353d1cf6d383b82
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 02:07:40 2009 +0200

    PLT: fixes for module name parsing (C-cC-em works now).

 elisp/geiser-plt.el | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 2696effa0a69fbba33142f2842e4e2523e485109
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 01:51:09 2009 +0200

    PLT: fixes for module name completion.

 scheme/plt/geiser.ss             |  6 +++---
 scheme/plt/geiser/completions.ss | 25 ++++++++++++++++---------
 2 files changed, 19 insertions(+), 12 deletions(-)

commit 4e1bfdb594e5606f68a41e280c75776e2fb0917e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 01:36:00 2009 +0200

    Guile: bug fix (missing module import).

 scheme/guile/geiser/modules.scm | 1 +
 1 file changed, 1 insertion(+)

commit 0a0813c9314518007decbbe641fb131f99ae57d0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 01:27:16 2009 +0200

    PLT: missing export.

 scheme/plt/geiser.ss | 2 ++
 1 file changed, 2 insertions(+)

commit d7657c533921de69d1805f7bf3b40d9426d7800b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 11 01:22:49 2009 +0200

    Improvements to module name support (using prefixes) and Guile support.

 elisp/geiser-completion.el         | 17 ++++++++++-------
 scheme/guile/geiser/completion.scm |  9 ++++++++-
 scheme/guile/geiser/emacs.scm      |  2 +-
 scheme/guile/geiser/modules.scm    | 13 ++++++-------
 4 files changed, 25 insertions(+), 16 deletions(-)

commit c09f5bbaa836d04a9babdff0943dc596dbc68e38
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 8 01:48:52 2009 +0200

    Module completion generalized and implemented for PLT.

 elisp/geiser-completion.el   | 14 ++++++++------
 elisp/geiser-guile.el        |  6 ++++++
 elisp/geiser-impl.el         | 18 ++++++++++++++----
 elisp/geiser-plt.el          |  3 +++
 scheme/plt/geiser.ss         |  8 +++++++-
 scheme/plt/geiser/modules.ss | 42 +++++++++++++++++++++++++++++++++++++++++-
 6 files changed, 79 insertions(+), 12 deletions(-)

commit 9127a121c76f5d5606bca9a668bda5509ec3b830
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu May 7 22:55:45 2009 +0200

    PLT autodoc: define-for-syntax.

 scheme/plt/geiser/autodoc.ss | 4 ++++
 1 file changed, 4 insertions(+)

commit 6fa9ca6e3372eddbb0c5a34e477db9447f87b22a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu May 7 22:53:32 2009 +0200

    Better handling of initial setup (registering implementations).

 elisp/geiser-impl.el | 10 ++++++++++
 elisp/geiser.el      |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit a883b94eaf23ba291c3a8481440358c572a67f0b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed May 6 21:29:52 2009 +0200

    Small refactoring.

 scheme/plt/geiser/modules.ss | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d9ac1be1f1c5357c2f590e24ec8ef97ebb01e27
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed May 6 03:11:27 2009 +0200

    PLT: M-. is also able to locate modules. Refactorings.

 scheme/plt/geiser/autodoc.ss   |  2 +-
 scheme/plt/geiser/eval.ss      | 38 +++-------------------
 scheme/plt/geiser/locations.ss | 17 ++++++++--
 scheme/plt/geiser/modules.ss   | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/plt/geiser/utils.ss     | 24 +-------------
 5 files changed, 107 insertions(+), 61 deletions(-)
 create mode 100644 scheme/plt/geiser/modules.ss

commit a7cde6cd6c4677c4618ece3602890d6f6782cd48
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 4 21:16:08 2009 +0200

    PLT: define-syntax-rule in autodoc.

 scheme/plt/geiser/autodoc.ss | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit b85aab287022ac402f2d5ac588709282b6efa449
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 4 21:15:44 2009 +0200

    Dead code elimination.

 scheme/plt/geiser/completions.ss | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

commit 1de0625a0a4ec28744e6d7fec45e7713ee505cfa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 4 20:49:46 2009 +0200

    PLT: argument position and syntax and variable recognition in autodoc.

 scheme/plt/geiser/autodoc.ss | 120 +++++++++++++++++++++++++++++++++++----------------
 scheme/plt/geiser/utils.ss   |   4 +-
 2 files changed, 85 insertions(+), 39 deletions(-)

commit 41ec4384042deaf4a6093594a4dbff2958485e32
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 4 20:49:20 2009 +0200

    Autodoc: support for info about variables.

 elisp/geiser-autodoc.el | 33 ++++++++++++++++++---------------
 1 file changed, 18 insertions(+), 15 deletions(-)

commit cdd90c3af5a1a0fcd206293e8c8cb584b575e4f0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon May 4 01:05:33 2009 +0200

    PLT: autodoc (without argument positions).

 elisp/geiser-plt.el            |   1 +
 scheme/plt/geiser.ss           |   4 +-
 scheme/plt/geiser/autodoc.ss   | 160 +++++++++++++++++++++++++++++++++++++++++++++++++
 scheme/plt/geiser/eval.ss      |   4 +-
 scheme/plt/geiser/locations.ss |   7 ++-
 scheme/plt/geiser/utils.ss     |  43 ++++++++-----
 6 files changed, 198 insertions(+), 21 deletions(-)
 create mode 100644 scheme/plt/geiser/autodoc.ss

commit 10fc0f3411cf838ee67e01df75fe8d84de367319
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 3 13:44:22 2009 +0200

    Better edit location heuristics.

 elisp/geiser-edit.el           | 20 +++++++++++++++++---
 scheme/plt/geiser/locations.ss | 27 ++++++++++++++++++---------
 2 files changed, 35 insertions(+), 12 deletions(-)

commit 78152318f5e6fb8ad315bd72a8b9257ec4b91b4b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 3 03:19:43 2009 +0200

    Hopefully harmless refactoring.

 scheme/plt/geiser/eval.ss      | 22 +++++-----------------
 scheme/plt/geiser/locations.ss | 13 ++++++++++---
 scheme/plt/geiser/utils.ss     | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 64 insertions(+), 20 deletions(-)
 create mode 100644 scheme/plt/geiser/utils.ss

commit 8d4246f0b5cf3cfbe3a0cc3a9526d370ea9c26e1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 3 01:49:40 2009 +0200

    PLT: handling correctly multiple values in evaluations.

 scheme/plt/geiser/eval.ss | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

commit 533e4133307e9931838a2b6a50eb4c9474b81973
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 3 01:22:01 2009 +0200

    Wrapping arbitrary regions with a begin block before evaluation/expansion.

 elisp/geiser-debug.el | 28 ++++++++++++++++++----------
 elisp/geiser-mode.el  | 33 ++++++++++++++++++++++++---------
 2 files changed, 42 insertions(+), 19 deletions(-)

commit 53f1b00552be4057af7c0ef19d708bb2bbf86952
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun May 3 01:21:03 2009 +0200

    PLT: simple macroexpand.

 scheme/plt/geiser.ss      | 2 ++
 scheme/plt/geiser/eval.ss | 7 +++++++
 2 files changed, 9 insertions(+)

commit bfcb656cd2f17b6cfc90afa0c535c95294863558
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 2 22:38:32 2009 +0200

    PLT: better module name in REPL prompt.

 scheme/plt/geiser/eval.ss | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

commit bec42c549db978bdce5709c93c9e39e4f3a45885
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 2 22:37:56 2009 +0200

    PLT in default implementations at startup.

 elisp/geiser.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e5624bcc1b001f3839b7dba3bc3f396799dca75f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat May 2 15:16:20 2009 +0200

    REPL: C-d does not send EOF. Kill scheme with C-cC-d if you need to.

 elisp/geiser-repl.el | 2 ++
 1 file changed, 2 insertions(+)

commit 410eaca7a6ed7565bdacc92e411fa20627da08e7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 1 23:10:53 2009 +0200

    PLT:  Current module in REPL prompt and don't change it after C-cC-l.

 scheme/plt/geiser.ss      | 16 ++++------------
 scheme/plt/geiser/eval.ss | 39 ++++++++++++++++++++++++++++++++-------
 2 files changed, 36 insertions(+), 19 deletions(-)

commit f58c500ab06445481e710995ec5779ebd5ddc1b0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 1 13:23:22 2009 +0200

    Better guessing for edit locations.

 elisp/geiser-edit.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit cce611b5d3f24273d22eafd66544457a79a0bf6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 1 13:20:39 2009 +0200

    PLT: Enter loaded module after C-cC-l.

 scheme/plt/geiser/eval.ss | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c4aef753ffe087961b9f078913724755d2ce0938
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri May 1 13:19:49 2009 +0200

    Irrelevant refactoring.

 elisp/geiser-connection.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit eb521e1ecc9a27e3ef208a6a4d01ec6edb88a0f7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 30 00:37:49 2009 +0200

    Bail out if scheme dies while waiting for an evaluation result.

 elisp/geiser-connection.el | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 62a12ad5d23520d93a30c38db083bdbfd248b77e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 30 00:03:22 2009 +0200

    PLT: Help fix.

 elisp/geiser-base.el |  5 ++++
 elisp/geiser-plt.el  | 80 ++++++++++++++++++++++++++++++------------------------------
 scheme/plt/geiser.ss |  1 +
 3 files changed, 46 insertions(+), 40 deletions(-)

commit fbd809ff8c48f12d1b13caae70810421aaa0aef4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Apr 28 00:50:18 2009 +0200

    Fixes for eval/compilation error display.

 elisp/geiser-compile.el |  6 +++---
 elisp/geiser-debug.el   | 26 ++++++++++++--------------
 elisp/geiser-plt.el     |  1 +
 3 files changed, 16 insertions(+), 17 deletions(-)

commit 31a4bd02c78be39cdd4a58bbc286a57906a525ce
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Apr 27 21:28:51 2009 +0200

    Support for external help functions (and application to PLT).

 elisp/geiser-doc.el  | 38 +++++++++++++++++++++++---------------
 elisp/geiser-impl.el | 13 +++++++++++--
 elisp/geiser-plt.el  |  7 +++++++
 elisp/geiser.el      |  8 +++++++-
 4 files changed, 48 insertions(+), 18 deletions(-)

commit 71cb453f51d7cd04834916a5df0b477f9175853c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 21:14:49 2009 +0200

    PLT: source locations.

 scheme/plt/geiser.ss           |  5 ++++-
 scheme/plt/geiser/locations.ss | 41 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+), 1 deletion(-)
 create mode 100644 scheme/plt/geiser/locations.ss

commit 2e9d01f42864f8683032a1a1d54419c984844b29
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 19:24:04 2009 +0200

    PLT: completion support.

 scheme/plt/geiser.ss             |  5 +++-
 scheme/plt/geiser/completions.ss | 62 ++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+), 1 deletion(-)
 create mode 100644 scheme/plt/geiser/completions.ss

commit ad8f2f069f9cec540fc09b2c2b704211f75a3e8f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 16:50:10 2009 +0200

    PLT: load-file and improvements to evaluation.

 scheme/plt/geiser.ss      |  4 ++++
 scheme/plt/geiser/eval.ss | 37 ++++++++++++++++++++++++++++++-------
 2 files changed, 34 insertions(+), 7 deletions(-)

commit fca39ead02621a8568adbec81ea569f8beb8c39d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 15:08:48 2009 +0200

    run-geiser is now aware of the current buffer's implementation.

 elisp/geiser-repl.el | 1 +
 1 file changed, 1 insertion(+)

commit ca867c2f73cca99fceecf949336f51f99fcb1a17
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 15:08:16 2009 +0200

    PLT: evaluation functions moved to their own module.

 scheme/plt/geiser.ss      | 39 ++++-----------------------------
 scheme/plt/geiser/eval.ss | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+), 35 deletions(-)
 create mode 100644 scheme/plt/geiser/eval.ss

commit deaddf8a891dd31af63a9881e2c9d4e53ff5ae71
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 14:07:28 2009 +0200

    PLT: more robust (and somewhat simpler) evaluation.

 scheme/plt/geiser.ss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit df593e60b078759d88daf98c18112821fe70a8a7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 26 13:50:35 2009 +0200

    PLT support: basic startup and evaluation working.

 elisp/geiser-eval.el |  24 +++++----
 elisp/geiser-plt.el  | 162 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser.el      |   2 +-
 scheme/plt/geiser.ss |  86 +++++++++++++++++++++++++++++++
 4 files changed, 264 insertions(+), 10 deletions(-)
 create mode 100644 elisp/geiser-plt.el
 create mode 100644 scheme/plt/geiser.ss

commit ad873e433af602e66ae1ca6da3cc07309b998879
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Apr 9 08:13:15 2009 +0200

    Minor nits

 elisp/geiser-xref.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit c6b5406134cbd5d16f3175dcef77006a26dcf83b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 5 12:08:55 2009 +0200

    Xrefs formatting nits.

 elisp/geiser-xref.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9f2516cd6aa09b6297088aa56aa5dd42d9761b5a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 5 12:05:04 2009 +0200

    Bug fix.

 elisp/geiser-xref.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit 529035ce32fe7fec27edd8e9fbce651d1e9aaf34
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 5 11:40:01 2009 +0200

    Better xrefs display (classified by module).

 elisp/geiser-xref.el | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

commit 8e72e66019fdab0fe2ea8f57faec57c06f7bf108
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Apr 5 06:40:05 2009 +0200

    Using the new (system xref) interface.

 scheme/guile/geiser/xref.scm | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

commit 0dcfbf2be66437b4a453a09b6485e8bc65218558
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Apr 3 10:09:52 2009 +0200

    Print bye-bye message when leaving repl with C-d.

 elisp/geiser-repl.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit c53bdcf0574384c12b18ee27158d9d6ae8238e4f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Apr 1 11:54:01 2009 +0200

    Better xref display.

 elisp/geiser-xref.el         | 25 +++++++++++++++++++------
 scheme/guile/geiser/xref.scm |  2 +-
 2 files changed, 20 insertions(+), 7 deletions(-)

commit 65f268c860571158fff9aca4b0b8d083e2443e14
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Apr 1 07:45:32 2009 +0200

    Bug fix: really remove killed buffers from the list of closed repls.

 elisp/geiser-repl.el            | 3 ++-
 scheme/guile/geiser/modules.scm | 6 ++++--
 scheme/guile/geiser/xref.scm    | 2 +-
 3 files changed, 7 insertions(+), 4 deletions(-)

commit cf5069a87c22f36a5e8e08f60bb7239742d63832
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 21 00:47:02 2009 +0100

    Echo area message while retrieving xrefs.

 elisp/geiser-xref.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit a7b99970792a9b0c4d4ed1187c7da39c99920015
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 20 22:59:52 2009 +0100

    Missing require.

 elisp/geiser-mode.el | 1 +
 1 file changed, 1 insertion(+)

commit f1d132964fc278de6decc8442d09183e4b2c4d37
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 20 01:32:38 2009 +0100

    Reuse closed REPL buffers.

 elisp/geiser-repl.el | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

commit d603b236b6debf43f9b5bfb7f25312527ae51dc3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 19 02:14:53 2009 +0100

    More robust sexp scanning for autodoc.

 elisp/geiser-syntax.el | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 8e9a3eb9870b781b42bf4f2f4488579ad417e84f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 19 01:52:52 2009 +0100

    Guile: use the compiler by default to perform evaluations.

 elisp/geiser-guile.el | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

commit 845dbdb35e4b282a138bb7ad54a295199d642b4b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 18 23:59:12 2009 +0100

    Callers/callees (C-c <, C-c >).

 README                        |  2 ++
 elisp/geiser-eval.el          |  2 +-
 elisp/geiser-mode.el          |  2 ++
 elisp/geiser-xref.el          | 57 ++++++++++++++++++++++++++++++++++-----------------
 scheme/guile/geiser/emacs.scm |  4 +++-
 scheme/guile/geiser/xref.scm  | 34 ++++++++++++++++++++++--------
 6 files changed, 72 insertions(+), 29 deletions(-)

commit 89e9c57a0766bf9a1610c6239bb4c55db14d54e6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 17 14:01:06 2009 +0100

    Accept a list as Guile binary.

 elisp/geiser-guile.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit 5148f813564d051347bf611afcbd7582f009aaa9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 17 13:38:12 2009 +0100

    Bug fix.

 elisp/geiser-repl.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fe377ee5eda90a7426ff9e6dc3591c6b9e04c66d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 17 13:36:40 2009 +0100

    Misc nits and work in progress.

 elisp/geiser-debug.el   |  2 +-
 elisp/geiser-guile.el   |  2 +-
 elisp/geiser-impl.el    |  3 +++
 elisp/geiser-larceny.el | 17 +++++++++++++++--
 elisp/geiser-repl.el    |  1 +
 elisp/geiser.el         |  9 ++++++++-
 6 files changed, 29 insertions(+), 5 deletions(-)

commit 880d17da7bdd08da11dd3c8d55da98b1f8c34b0c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 16 02:56:11 2009 +0100

    Key for geiser-set-scheme in geiser-mode.

 README               |  1 +
 elisp/geiser-impl.el | 32 +++++++++++++++-----------------
 elisp/geiser-mode.el |  2 ++
 3 files changed, 18 insertions(+), 17 deletions(-)

commit bedcd027dced5111cc1a2fa91ba34c3d71b226d2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 16 02:39:27 2009 +0100

    Segregate REPL history files by implementation.

 elisp/geiser-repl.el | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 8dcd0a4d874f1d51f33f1b8a993b6c4f7754abf6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 16 01:39:55 2009 +0100

    Elisp-side larceny.

 elisp/geiser-larceny.el | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 105 insertions(+)
 create mode 100644 elisp/geiser-larceny.el

commit da9cae93e180463bb158461f5d008da83c172ed7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 16 01:39:28 2009 +0100

    Many a bug fix in multiple implementation support.

 elisp/geiser-doc.el  |  2 +-
 elisp/geiser-eval.el |  7 +------
 elisp/geiser-impl.el | 32 ++++++++++++++++++++++++++------
 elisp/geiser-mode.el |  7 +++++++
 elisp/geiser-repl.el | 36 ++++++++++++++----------------------
 5 files changed, 49 insertions(+), 35 deletions(-)

commit d7642ed7d0e3184921835644d8dde0b1b50e1e6f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 15 15:55:46 2009 +0100

    Multiple values as evaluation result supported.

 elisp/geiser-eval.el               | 6 +++++-
 scheme/guile/geiser/evaluation.scm | 2 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 660fc8e0465e48812fc6f38f82d91d22b0664118
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 14 12:42:09 2009 +0100

    Show implementation in geiser-mode's modeline.

 elisp/geiser-impl.el | 7 +++++--
 elisp/geiser-mode.el | 8 ++++++--
 elisp/geiser-repl.el | 8 ++++++--
 3 files changed, 17 insertions(+), 6 deletions(-)

commit 137d2e0db5efe444f6f208aba8ebd57584f1ee52
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 13 02:02:40 2009 +0100

    Module documentation command works again when invoked from the REPL.

 elisp/geiser-doc.el  | 11 ++++++-----
 elisp/geiser-impl.el | 20 ++++++++++++--------
 elisp/geiser-repl.el |  8 +++++++-
 3 files changed, 25 insertions(+), 14 deletions(-)

commit 7196cb2405c2773f394954904b63765fb9f95e8b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 13 01:17:57 2009 +0100

    Don't bother asking if there's only one implementation.

 elisp/geiser-impl.el |  2 +-
 elisp/geiser-repl.el | 11 +++++++++--
 elisp/geiser.el      |  2 +-
 3 files changed, 11 insertions(+), 4 deletions(-)

commit 01f1baed879ebcaa5bb5023e9df38ff181610663
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 11 04:14:20 2009 +0100

    Better (at least in US keyboards) default key (M-`) for module name completion.

 README               | 4 ++--
 elisp/geiser-mode.el | 1 +
 elisp/geiser-repl.el | 1 +
 3 files changed, 4 insertions(+), 2 deletions(-)

commit aaab7ec8c08f0fc62cf90119581765b41609ce1b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 11 04:08:42 2009 +0100

    Guilisms removed from geiser-repl.

 elisp/geiser-repl.el | 19 +++----------------
 1 file changed, 3 insertions(+), 16 deletions(-)

commit 24e2adca8be0e5b4f08a3434c29591cba83d73dd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 11 04:06:57 2009 +0100

    Support for multiple Scheme implementations, Chapter 2.
    
     * The REPL is aware of multiple implementations...
     * and it knows how to create more than one connection for guile;
     * but it's not been tested with more than one implementation.
     * geiser-mode seems to be able to keep track of active REPLs.

 elisp/geiser-guile.el |  11 ++-
 elisp/geiser-impl.el  |   6 +-
 elisp/geiser-mode.el  |   2 +-
 elisp/geiser-repl.el  | 221 +++++++++++++++++++++++++++++++++++++---------------------
 elisp/geiser.el       |  24 +++++--
 5 files changed, 173 insertions(+), 91 deletions(-)

commit d84fe6278c5bac2e9eb322ecac3e2883dd95d494
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 10 00:10:22 2009 +0100

    Reload Geiser libraries in the right order.

 elisp/geiser-doc.el | 1 -
 elisp/geiser.el     | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

commit eafe05ed39cf33ed8a3dd6d6a875dc2be00a19d2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 9 23:52:04 2009 +0100

    Support for multiple Scheme implementations, Chapter 1.
    
      * Evaluation system is now pluggable
      * The rest of the system understands said pluggability
      * Guile provides its own implementation (geiser-guile)
      * The reload system is aware of the new kids on the block

 elisp/geiser-completion.el  |  12 ++--
 elisp/geiser-doc.el         |  69 +++++++++++---------
 elisp/geiser-edit.el        |   2 +-
 elisp/geiser-eval.el        |  39 +++++++-----
 elisp/geiser-guile.el       | 105 +++++++++++++++++++++++++++++++
 elisp/geiser-impl.el        | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el        |  12 +++-
 elisp/geiser-popup.el       |  14 +++++
 elisp/geiser-repl.el        |   7 ++-
 elisp/geiser.el             |  15 +++--
 scheme/guile/geiser/doc.scm |   3 +-
 11 files changed, 391 insertions(+), 63 deletions(-)
 create mode 100644 elisp/geiser-guile.el
 create mode 100644 elisp/geiser-impl.el

commit baf8e5e99b0650690b16f4bb8ff1dd5736f18a3a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Mar 7 00:07:48 2009 +0100

    A bit of key bindings reorg: macro-related commands start with C-cC-m.

 README               | 13 +++++++------
 elisp/geiser-mode.el |  9 +++++----
 2 files changed, 12 insertions(+), 10 deletions(-)

commit 30ee9fdb4b15dc6a506b16cbc41ae55c7b9e8362
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 23:33:38 2009 +0100

    Some tidy up.

 scheme/guile/geiser/doc.scm | 41 +++++++++++++++++++----------------------
 1 file changed, 19 insertions(+), 22 deletions(-)

commit eda63df7eadd999a4e9234c4bcfcefe62a2bebe6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 02:49:13 2009 +0100

    Small bug fix.

 scheme/guile/geiser/doc.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 920ab2ad23b50a50ddf366cbffb7b4125f5c6cbb
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 02:34:36 2009 +0100

    Refactoring.

 scheme/guile/geiser/doc.scm | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

commit 1a45bd76c811698b85dc8b47b6fc406b5308473f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 01:27:39 2009 +0100

    Don't display autodoc for function being defined.

 README                      | 3 ++-
 scheme/guile/geiser/doc.scm | 9 +++++++++
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 1f8abf10f7167cacf122a2eaa50acc66f0974d53
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 00:55:41 2009 +0100

    A bit more robust generic methods.

 README                       |  2 +-
 elisp/geiser-mode.el         |  2 +-
 elisp/geiser-xref.el         | 11 +++++------
 scheme/guile/geiser/xref.scm |  6 +++---
 4 files changed, 10 insertions(+), 11 deletions(-)

commit 754aa7a194c412f52b4733142566ed5e33a04f4f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Mar 6 00:47:05 2009 +0100

    New command to display generic methods (C-cC-dg) implemented.

 README                       |   3 +-
 elisp/geiser-base.el         |   6 +++
 elisp/geiser-edit.el         |  14 +++---
 elisp/geiser-mode.el         |   1 +
 elisp/geiser-xref.el         | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser.el              |   1 +
 scheme/guile/geiser/xref.scm |   3 +-
 7 files changed, 152 insertions(+), 8 deletions(-)
 create mode 100644 elisp/geiser-xref.el

commit 9e91cef8b3d10e7eab88cc16d425fefc36c7321d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 5 22:53:47 2009 +0100

    turn-on/off-geiser-mode commands added and used in scheme-mode-hook.

 elisp/geiser-autodoc.el     |  2 +-
 elisp/geiser-mode.el        | 10 ++++++++++
 elisp/geiser.el             |  8 +++++++-
 scheme/guile/geiser/doc.scm |  4 ++--
 4 files changed, 20 insertions(+), 4 deletions(-)

commit efe21b1337f02095cf40791f8b0c237ae56c39a0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 5 02:19:42 2009 +0100

    They say call/cc is slow in Guile.

 scheme/guile/geiser/modules.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

commit 692eb942c39fd42ffe61f1408a4998d738c88933
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Mar 5 02:14:01 2009 +0100

    generic-methods implemented in scheme (no emacs side yet).

 scheme/guile/geiser/doc.scm  |  7 ++++++-
 scheme/guile/geiser/xref.scm | 30 +++++++++++++++++++++++++++++-
 2 files changed, 35 insertions(+), 2 deletions(-)

commit f1e7cfe8f0417ed636aca5d17706ea8e91375241
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 4 21:22:11 2009 +0100

    Leave quasiquote alone in autodoc.

 elisp/geiser-repl.el        | 5 ++---
 scheme/guile/geiser/doc.scm | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

commit 902b7685194e9adfcd19d518a45dae3c4b13a90b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Mar 4 02:07:41 2009 +0100

    New geiser-reload command. New geiser command.

 README                |  2 ++
 elisp/geiser-debug.el |  1 -
 elisp/geiser-mode.el  | 11 ++++++++++
 elisp/geiser-repl.el  | 18 +++++++++++++++--
 elisp/geiser.el       | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 93 insertions(+), 3 deletions(-)

commit a4b7db53db0d05b8a39c263715a296d64b4f64f4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 3 22:39:26 2009 +0100

    Cache arguments parsed from documentation; don't treat quasiquote as a function.

 scheme/guile/geiser/doc.scm | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

commit f09c34f2749d223760654d3b5d0934a042d176b1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 3 01:05:12 2009 +0100

    Highlight also #:key in autodoc.

 elisp/geiser-autodoc.el | 15 +++++++++++----
 elisp/geiser-syntax.el  |  6 ++++--
 2 files changed, 15 insertions(+), 6 deletions(-)

commit ef1fcb91a47ef570f71b240aaf2a6ec529c9eb6e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 3 00:36:08 2009 +0100

    Micro-optimisation.

 elisp/geiser-autodoc.el | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

commit d2afd2b7f9f793962dd0f949461851ae8be2649b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Mar 3 00:02:36 2009 +0100

    Fix autodoc support for multiline arities in documentation.

 scheme/guile/geiser/doc.scm | 21 +++++++++++++--------
 1 file changed, 13 insertions(+), 8 deletions(-)

commit 95e744b614398b2955143121e7b5da5748e833ee
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 23:01:17 2009 +0100

    Autodoc enhancements:
    
      * Use argument names from guile-procedures.txt when available.
      * Highlihgt #:opt with a face of its own.

 elisp/geiser-autodoc.el     | 16 ++++++++++++----
 elisp/geiser-repl.el        |  4 ++--
 elisp/geiser-syntax.el      | 12 +++++++-----
 scheme/guile/geiser/doc.scm | 31 +++++++++++++++++++++++++++++++
 4 files changed, 52 insertions(+), 11 deletions(-)

commit 3124c25768b107233497acc009e378bd6a044339
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 19:12:37 2009 +0100

    Correctly specify current module in REPL (and make it generic).

 elisp/geiser-eval.el | 15 ++++++++++++++-
 elisp/geiser-repl.el |  1 +
 2 files changed, 15 insertions(+), 1 deletion(-)

commit 02208b6423a33ff28540c27cf3dca678e8a77b7a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 16:19:49 2009 +0100

    Fix recursive require. Nicer arg names in autodoc.

 elisp/geiser-repl.el        | 1 -
 scheme/guile/geiser/doc.scm | 9 ++++++---
 2 files changed, 6 insertions(+), 4 deletions(-)

commit 1f80c5048e78d0251c18634b8bf7d3f8ea4733b0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 03:13:59 2009 +0100

    Breakdown of schemeland into neat submodules.

 scheme/guile/geiser/completion.scm                 |  56 +++++++++++
 scheme/guile/geiser/{introspection.scm => doc.scm} | 141 +++-------------------------
 scheme/guile/geiser/emacs.scm                      | 128 +++----------------------
 scheme/guile/geiser/evaluation.scm                 | 144 +++++++++++++++++++++++++++++
 scheme/guile/geiser/modules.scm                    | 102 ++++++++++++++++++++
 scheme/guile/geiser/utils.scm                      |  53 +++++++++++
 scheme/guile/geiser/xref.scm                       |  37 ++++++++
 7 files changed, 417 insertions(+), 244 deletions(-)
 create mode 100644 scheme/guile/geiser/completion.scm
 rename scheme/guile/geiser/{introspection.scm => doc.scm} (57%)
 create mode 100644 scheme/guile/geiser/evaluation.scm
 create mode 100644 scheme/guile/geiser/modules.scm
 create mode 100644 scheme/guile/geiser/utils.scm
 create mode 100644 scheme/guile/geiser/xref.scm

commit ab27ee71db711b8295dfb6e9f89d059d2310cc5e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 01:45:04 2009 +0100

    Tiny refactoring.

 elisp/geiser-syntax.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 001534d64dd74fd0977c2c4421fe029b7a8f62e7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 01:24:16 2009 +0100

    Correctly detecting first occurrences of methods in M-.

 elisp/geiser-edit.el | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

commit 2896240921784f0b7f6b9bcf1c658024c9d9dc25
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 01:06:14 2009 +0100

    Fix (again!) completion for symbols outside enclosing forms.

 elisp/geiser-autodoc.el | 2 +-
 elisp/geiser-syntax.el  | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

commit 97d1170d4170933a317782dbf353eddf41f09802
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Mar 2 00:29:55 2009 +0100

    Autodoc support for GOOPS methods.

 scheme/guile/geiser/introspection.scm | 91 ++++++++++++++++++++++++++-----------------
 1 file changed, 56 insertions(+), 35 deletions(-)

commit 28e79842fd87689187834a2c4186b5e2ac294fe6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 20:40:22 2009 +0100

    Macro-expand commands.

 README                        | 55 ++++++++++++++++++++++++++++-----------------------
 elisp/geiser-debug.el         | 13 ++++++++++++
 elisp/geiser-mode.el          | 27 +++++++++++++++++++++++--
 scheme/guile/geiser/emacs.scm |  5 ++++-
 4 files changed, 72 insertions(+), 28 deletions(-)

commit c5d4a2b6670a9f3ce8b357ef5f4cab72eb211102
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 20:06:18 2009 +0100

    Refactoring the refactoring.

 elisp/geiser-debug.el |  9 ++++++++-
 elisp/geiser-eval.el  | 10 ----------
 2 files changed, 8 insertions(+), 11 deletions(-)

commit af150090685e5e456bc0788fb45703b6eace053d
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 16:41:09 2009 +0100

    Some refactoring and new ge:macroexpand.

 elisp/geiser-debug.el         |  7 +++++++
 elisp/geiser-eval.el          | 10 ++++++++++
 elisp/geiser-mode.el          | 21 +++------------------
 scheme/guile/geiser/emacs.scm |  5 +++++
 4 files changed, 25 insertions(+), 18 deletions(-)

commit 3990c6476ab7cee03f4bf89827df7a23adf4d794
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 15:51:09 2009 +0100

    Completions buffer renamed to *Geiser completions*.

 elisp/geiser-completion.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 18e0a6a3fdad52f4f30e9190b97b64211595e4d0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 15:49:34 2009 +0100

    Bug fix.

 scheme/guile/geiser/introspection.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit b03485cff434d8a2eafd8ad02620293a35c01977
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 02:19:41 2009 +0100

    More precise argument position highlighting in autodoc.

 elisp/geiser-syntax.el | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

commit e9a5923201d09f13b522ccc769bcafbdd11e15c2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 01:13:33 2009 +0100

    Completion for symbols without enclosing sexp in scheme buffers.

 elisp/geiser-completion.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 1376e6ca4919396ff94c78374d816f86556f395e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 01:09:16 2009 +0100

    Fix for autodoc when point in a rest formal arg in define.

 elisp/geiser-syntax.el                |  2 +-
 scheme/guile/geiser/introspection.scm | 16 +++++++++-------
 2 files changed, 10 insertions(+), 8 deletions(-)

commit 04652644b47528d0a3ab00c6475a6752e7a1dbb5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Mar 1 00:41:08 2009 +0100

    Miscellaneous little fixes.

 elisp/geiser-autodoc.el               |  5 ++++-
 elisp/geiser-completion.el            |  5 ++---
 scheme/guile/geiser/introspection.scm | 24 +++++++++++++++---------
 3 files changed, 21 insertions(+), 13 deletions(-)

commit 7eb84295087a0d531e8694abf0ecc65c86ec5c34
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 23:03:53 2009 +0100

    Display (quote foo) as 'foo in autodoc strings.

 elisp/geiser-autodoc.el               | 10 +++++-----
 scheme/guile/geiser/introspection.scm |  5 -----
 2 files changed, 5 insertions(+), 10 deletions(-)

commit 034b3070c61888a0e88edd33506c58fdae9b2115
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 17:16:20 2009 +0100

    Refactoring: local bindings discovery moved to schemeland.

 elisp/geiser-autodoc.el               |  2 +-
 elisp/geiser-completion.el            |  8 ++++++-
 elisp/geiser-syntax.el                | 53 +++++++++++++------------------------------
 scheme/guile/geiser/introspection.scm | 31 +++++++++++++++++++++----
 4 files changed, 51 insertions(+), 43 deletions(-)

commit 77253da86ac2d005a0802426c7ebe08bf8dca9ce
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 14:19:48 2009 +0100

    Fix scanning partial sexps in presence of quotations &co.

 elisp/geiser-syntax.el | 4 ++++
 1 file changed, 4 insertions(+)

commit e78b749e34c2f6e681f815d0b9b9dd3d32537c88
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 04:35:45 2009 +0100

    Simpler handling of rest args in Emacs' side.

 elisp/geiser-autodoc.el               | 33 +++++++++++----------------------
 elisp/geiser-doc.el                   | 11 ++++++++---
 elisp/geiser-repl.el                  |  4 ++--
 scheme/guile/geiser/introspection.scm |  4 ++--
 4 files changed, 23 insertions(+), 29 deletions(-)

commit adf746b37d1ffa35abe99eb3ae2b85902e8781ce
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 02:08:01 2009 +0100

    Autodoc working in the REPL (again).

 elisp/geiser-repl.el | 8 ++++++++
 1 file changed, 8 insertions(+)

commit d1fb61738e38b71114d85e8f4f5205908637715b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 01:59:05 2009 +0100

    Persistent REPL history.

 elisp/geiser-repl.el | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit 08a8a4e16a7590d2c3517d8330ff0cb76d81792c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 00:44:31 2009 +0100

    Delete, don't kill, region.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 12aef24d0084a3739e9433b10398304261074066
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 28 00:42:42 2009 +0100

    Put new procedure-arguments into (geiser introspection) until it goes upstream.

 scheme/guile/geiser/introspection.scm | 38 +++++++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

commit 20811cf28fd0496acbd2d3fe9050d8c9892470a7
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 27 23:59:55 2009 +0100

    Font lock for autodoc's function name.

 elisp/geiser-autodoc.el | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

commit 3d0d1ce42229a8e6cd62d1a1c8f9b1c4c104293a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 27 23:29:09 2009 +0100

    Autodoc system revamped.

 elisp/geiser-autodoc.el               |  87 ++++++++++++++++---------------
 elisp/geiser-syntax.el                |  90 ++++++++++++--------------------
 scheme/guile/geiser/emacs.scm         |   2 +-
 scheme/guile/geiser/introspection.scm | 118 +++++++++++++++++++++---------------------
 4 files changed, 136 insertions(+), 161 deletions(-)

commit 8337756109d12349b220ba422f148555a2d031c2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 26 12:00:12 2009 +0100

    Eval/load file in the correct module.

 scheme/guile/geiser/emacs.scm | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

commit eb2563843e3d2843da838f87f5bc32dcf9b47757
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 25 21:46:08 2009 +0100

    Variable controlling geiser-autodoc-mode in REPL (on by default).

 elisp/geiser-custom.el | 2 +-
 elisp/geiser-repl.el   | 9 ++++++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 3984c0691404a2c85ad398def1228d13f2fa480a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 25 02:08:08 2009 +0100

    Autoloads for customization groups.

 README          | 9 ++++++---
 elisp/geiser.el | 5 +++++
 2 files changed, 11 insertions(+), 3 deletions(-)

commit 4dad19b83074091cd18bb1561ffed5011e51ee5a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 25 01:23:22 2009 +0100

    Missing require.

 elisp/geiser-mode.el | 1 +
 1 file changed, 1 insertion(+)

commit 726c5d5bfe9d86523376965ea7a371deccab6d07
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 25 01:08:29 2009 +0100

    Fix for smart-tab-mode.

 elisp/geiser-completion.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f59c052de6781566baf674c59531478cdc0fddf4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 25 01:02:25 2009 +0100

    Missing require.

 elisp/geiser-base.el | 1 +
 1 file changed, 1 insertion(+)

commit b9b36421ff83a12b1ef9e645be7d23f68d703912
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 24 23:23:58 2009 +0100

    Smart tab is not enabled by default; module completion bound to C-.

 README                     | 25 +++++++++++--------------
 elisp/geiser-completion.el |  6 ++----
 elisp/geiser-debug.el      | 18 +++++++++++-------
 elisp/geiser-mode.el       |  5 +++--
 elisp/geiser-repl.el       |  3 ++-
 5 files changed, 29 insertions(+), 28 deletions(-)

commit 05c2c94f9a29e24139c591d994a225d9de416767
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 24 10:40:55 2009 +0100

    Spurious geiser-debug-mode key mode map deleted.

 elisp/geiser-debug.el | 9 ---------
 1 file changed, 9 deletions(-)

commit 65633c9b1be28e4a0bc6bc37ec8cccef33cc0a92
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 24 10:38:46 2009 +0100

    Compilation mode working on dbg buffers.

 elisp/geiser-debug.el | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 641449ca6073648d5722d1a552d3a5245d523e48
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 24 02:18:28 2009 +0100

    Partial support for stack trace display.

 elisp/geiser-autodoc.el               | 57 ++++++++++++-------------
 elisp/geiser-compile.el               | 34 +++------------
 elisp/geiser-debug.el                 | 96 +++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-eval.el                  |  1 +
 elisp/geiser-mode.el                  | 17 +-------
 scheme/guile/geiser/emacs.scm         | 40 ++++++++++++++++--
 scheme/guile/geiser/introspection.scm | 15 +++----
 7 files changed, 175 insertions(+), 85 deletions(-)
 create mode 100644 elisp/geiser-debug.el

commit abe0355b7eb7961c89ef2e37f68451b131dacb05
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 04:46:14 2009 +0100

    Correct stack in load/compile file retorts.

 elisp/geiser-compile.el       | 8 ++++----
 elisp/geiser-eval.el          | 8 ++++++++
 scheme/guile/geiser/emacs.scm | 8 +++++---
 3 files changed, 17 insertions(+), 7 deletions(-)

commit 612c7390fc3ff78ac9b0b10b83304095cfceccd5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 04:22:07 2009 +0100

    Better stack delimitation: include only frames relevant to the eval'd expression.

 scheme/guile/geiser/emacs.scm | 38 +++++++++++++++++++++-----------------
 1 file changed, 21 insertions(+), 17 deletions(-)

commit a585a046ddc523cb69977c856f3386d8bb65c325
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 02:45:30 2009 +0100

    Capture backtrace. Fix load/compile from Emacs.

 elisp/geiser-compile.el       |  2 +-
 scheme/guile/geiser/emacs.scm | 21 ++++++++++++++++-----
 2 files changed, 17 insertions(+), 6 deletions(-)

commit b85a85fb3c6445f7b1d9291b019acd03ad4dabd4
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 00:59:57 2009 +0100

    Refactoring of the eval/compile procedures.

 scheme/guile/geiser/emacs.scm | 46 ++++++++++++++++++++--------------------------
 1 file changed, 20 insertions(+), 26 deletions(-)

commit 4437f8d08a03e83e425742565f532cc0f5e768c8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 21 00:01:27 2009 +0100

    Offer also local bindings as possible completions in M-TAB.

 elisp/geiser-completion.el |  3 ++-
 elisp/geiser-syntax.el     | 48 +++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 49 insertions(+), 2 deletions(-)

commit 5d6dd6f7e7c9f8abddfc59acf3f3318f594afb22
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 20 20:55:39 2009 +0100

    Play nice with (ice-9 history) by using WRITE to return values to Emacs.

 scheme/guile/geiser/emacs.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit a295bf5b45e3e1a38516120af0fa60d6594d7083
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 20 02:02:56 2009 +0100

    Allow loading of a initialisation file (akin to ~/.guile, named ~/.guile-geiser by default).

 elisp/geiser-repl.el | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

commit 327f1431a235a10a0d0a685fcf1fe26bf3973ffa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 18 12:59:41 2009 +0100

    (geiser eval) functionality moved to (geiser emacs).

 README                        |   2 +-
 elisp/geiser-eval.el          |   4 +-
 scheme/guile/geiser/emacs.scm |  82 ++++++++++++++++++++++++++++++++++++----
 scheme/guile/geiser/eval.scm  | 102 --------------------------------------------------
 4 files changed, 78 insertions(+), 112 deletions(-)
 delete mode 100644 scheme/guile/geiser/eval.scm

commit 606ebcefb7ccc160f3dd9583685d30345b2d95b6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 17 21:56:23 2009 +0100

    Document browser improvements: history and links.

 README              |  15 +++++
 elisp/geiser-doc.el | 209 +++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 2 files changed, 200 insertions(+), 24 deletions(-)

commit 9f744aa5e4e032cfe413673fa7e875ab16ce8600
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 17 16:11:33 2009 +0100

    Fix in symbol help signature displaying.

 scheme/guile/geiser/introspection.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 02b4dbe81d4662aaf207677c53b869cc055b06a3
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 17 01:31:26 2009 +0100

    Better symbol documentation.

 elisp/geiser-doc.el                   | 11 +++++----
 scheme/guile/geiser/emacs.scm         |  2 +-
 scheme/guile/geiser/introspection.scm | 54 +++++++++++++++++++++----------------------
 3 files changed, 35 insertions(+), 32 deletions(-)

commit 6e89d965f1b0a8329ddc012feb36fd43c591acbf
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 17 00:44:11 2009 +0100

    Separate commands for evaluation and compilation.

 elisp/geiser-autodoc.el      |  7 +++--
 elisp/geiser-compile.el      |  2 +-
 elisp/geiser-completion.el   |  6 ++--
 elisp/geiser-doc.el          |  4 +--
 elisp/geiser-edit.el         |  6 ++--
 elisp/geiser-eval.el         | 28 ++++++++++++-------
 elisp/geiser-mode.el         | 77 ++++++++++++++++++++++++++++++++--------------------
 elisp/geiser-syntax.el       |  4 ++-
 scheme/guile/geiser/eval.scm | 33 +++++++++++++++++++---
 9 files changed, 111 insertions(+), 56 deletions(-)

commit 41d54012368ca33461fe3e8668c2b0e3052af3b8
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 16 22:21:28 2009 +0100

    New command to open module file.

 README                                | 39 ++++++++++++++++++++-------------------
 elisp/geiser-edit.el                  | 16 +++++++++++-----
 elisp/geiser-eval.el                  |  3 ++-
 elisp/geiser-mode.el                  |  3 ++-
 elisp/geiser-syntax.el                |  5 ++---
 scheme/guile/geiser/emacs.scm         |  3 ++-
 scheme/guile/geiser/eval.scm          |  6 ++++--
 scheme/guile/geiser/introspection.scm | 11 ++++++-----
 8 files changed, 49 insertions(+), 37 deletions(-)

commit fbc65dfc767da1dc3b28262eae041e9d303752c2
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 16 00:46:31 2009 +0100

    New command: module documentation.

 README                        |  8 +++++---
 elisp/geiser-autodoc.el       |  2 +-
 elisp/geiser-completion.el    | 15 ++++++++-------
 elisp/geiser-custom.el        | 11 ++++++-----
 elisp/geiser-doc.el           | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el          |  9 +++++++--
 elisp/geiser-repl.el          |  1 +
 scheme/guile/geiser/emacs.scm |  3 ++-
 8 files changed, 82 insertions(+), 19 deletions(-)

commit ecf460e9aca83a32bb1149ecd5b0238c7a5cb233
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 21:39:02 2009 +0100

    Nits.

 elisp/geiser-syntax.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit e7b2ec5d5d2e9f57840ab08adbbce03ccff48956
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 19:54:14 2009 +0100

    Avoing REPL modeline message flickering on redirection.

 elisp/geiser-connection.el | 16 ++++++++++------
 elisp/geiser-repl.el       |  7 +++++--
 2 files changed, 15 insertions(+), 8 deletions(-)

commit 1af411071098d87188a6a479dd6741c65034de62
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 19:00:15 2009 +0100

    Compile command adapted to new compiled-file-name behaviour.

 scheme/guile/geiser/eval.scm | 14 +++-----------
 1 file changed, 3 insertions(+), 11 deletions(-)

commit bc1b0658370808d53cfd4e485911802bc498f626
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 18:41:04 2009 +0100

    Smart tab completion mode.

 README                     | 14 ++++++++++++--
 elisp/geiser-completion.el | 37 +++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el       | 13 ++++++++++---
 elisp/geiser-repl.el       |  3 +--
 4 files changed, 60 insertions(+), 7 deletions(-)

commit 245e681f8ebd0f9304ae87815bf1d49a05241162
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 17:35:17 2009 +0100

    Initial support for module name completion.

 README                                |  2 +
 elisp/geiser-completion.el            | 90 ++++++++++++++++++++-----------------------
 elisp/geiser-repl.el                  |  2 +
 scheme/guile/geiser/emacs.scm         |  3 +-
 scheme/guile/geiser/introspection.scm | 69 +++++++++++++++++++++++++++++++--
 5 files changed, 113 insertions(+), 53 deletions(-)

commit f753d35c186ad448e70e84afbc91fb37db2fbb57
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 01:32:31 2009 +0100

    Recognise empty doc string in Emacs side. Small refactorings.

 elisp/geiser-doc.el                   |  4 ++--
 scheme/guile/geiser/introspection.scm | 11 +++++------
 2 files changed, 7 insertions(+), 8 deletions(-)

commit 6fab966acd979bedcd12adacc793999e459cac52
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 15 01:22:29 2009 +0100

    Better docstring.

 scheme/guile/geiser/introspection.scm | 69 +++++++++++++++++++++++++++++--------------
 1 file changed, 47 insertions(+), 22 deletions(-)

commit 71114ab18c51729b54b05ab08316fd1eb4faf56f
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 14 22:52:44 2009 +0100

    Fleshing out the README.

 README | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

commit 1d8477f7cd318b5692e5650901ac5ac9af6f19c6
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 14 22:15:09 2009 +0100

    Autodoc: try symbol at point first. Some cleanups.

 elisp/geiser-autodoc.el               |  9 +++----
 elisp/geiser-base.el                  |  7 ------
 elisp/geiser-custom.el                | 57 +++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-edit.el                  |  3 ++-
 elisp/geiser-mode.el                  |  1 +
 elisp/geiser-repl.el                  | 13 ++++++----
 elisp/geiser-syntax.el                |  8 +++---
 scheme/guile/geiser/introspection.scm |  4 ++-
 8 files changed, 78 insertions(+), 24 deletions(-)
 create mode 100644 elisp/geiser-custom.el

commit 5ee2ae3ccd73f5dfae68db011c581f918eea8751
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 14 20:52:27 2009 +0100

    New command to get docstrings (C-cC-d).

 elisp/geiser-completion.el            |  4 ++-
 elisp/geiser-doc.el                   | 63 +++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el                  |  2 ++
 elisp/geiser-repl.el                  |  1 +
 scheme/guile/geiser/emacs.scm         |  3 ++-
 scheme/guile/geiser/introspection.scm |  5 ++++
 6 files changed, 76 insertions(+), 2 deletions(-)
 create mode 100644 elisp/geiser-doc.el

commit 13d84e514446438f0115585f3a14e36f535e2225
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 14 14:07:08 2009 +0100

    Small autodoc fixes.

 elisp/geiser-autodoc.el               | 24 +++++++++++++-----------
 scheme/guile/geiser/introspection.scm | 16 +++++++++-------
 2 files changed, 22 insertions(+), 18 deletions(-)

commit 9cfc4087722156e3cb53e425b2f81fd118844d14
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 13 20:23:43 2009 +0100

    Small improvements.

 elisp/geiser-autodoc.el               |  2 +-
 elisp/geiser-compile.el               |  3 +--
 elisp/geiser-edit.el                  |  2 +-
 elisp/geiser-syntax.el                | 11 ++++++-----
 scheme/guile/geiser/introspection.scm |  4 +---
 5 files changed, 10 insertions(+), 12 deletions(-)

commit 62d18ab50a048f83d4a67c9f241e6e725fc32528
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 13 01:11:10 2009 +0100

    Inconsequential refactorings.

 scheme/guile/geiser/introspection.scm | 43 ++++++++++++++-----------------------------
 1 file changed, 14 insertions(+), 29 deletions(-)

commit 1369b62d71e06735a3e4d2b8349cfffe6de12a6c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Fri Feb 13 00:54:26 2009 +0100

    Faster, asynchronous autodoc.

 elisp/geiser-autodoc.el               | 38 ++++++++++++++++++++++++--------------
 scheme/guile/geiser/emacs.scm         |  2 +-
 scheme/guile/geiser/introspection.scm | 10 ++++++++--
 3 files changed, 33 insertions(+), 17 deletions(-)

commit 432e405274205c91784456449f344044c8d62e48
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 12 23:33:58 2009 +0100

    Better arg lists.

 elisp/geiser-edit.el                  |  7 +++++--
 scheme/guile/geiser/introspection.scm | 38 +++++++++++++++++++++++++-------------
 2 files changed, 30 insertions(+), 15 deletions(-)

commit 09c532a18d33ab2e0a3dcb3a38e746992e3381aa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 12 22:47:34 2009 +0100

    Faster M-.

 elisp/geiser-edit.el                  | 7 ++++---
 scheme/guile/geiser/introspection.scm | 6 ++----
 2 files changed, 6 insertions(+), 7 deletions(-)

commit fa17e0cb3367e68e8db386497ddcfe3cfcf96416
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 12 22:34:51 2009 +0100

    M-. working for any symbol whose module can be located.

 scheme/guile/geiser/introspection.scm | 29 ++++++++++++++++-------------
 1 file changed, 16 insertions(+), 13 deletions(-)

commit 0ead55f7052edb0f151e4e86c6feb30718d36bea
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 12 22:07:29 2009 +0100

    Edit symbol at point for programs.

 .gitignore                            |   1 +
 elisp/geiser-compile.el               |   3 +-
 elisp/geiser-edit.el                  | 116 ++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el                  |   3 ++
 elisp/geiser-repl.el                  |   6 +--
 elisp/geiser-syntax.el                |   2 -
 scheme/guile/geiser/emacs.scm         |   1 +
 scheme/guile/geiser/eval.scm          |   4 +-
 scheme/guile/geiser/introspection.scm |  38 ++++++++++++--
 9 files changed, 162 insertions(+), 12 deletions(-)
 create mode 100644 elisp/geiser-edit.el

commit f7dc963dd7c6df1490ff792b6a45bd8f8ffea71e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 20:56:58 2009 +0100

    Don't let (ice-9 history) confuse the evaluator.

 elisp/geiser-connection.el            |  1 -
 elisp/geiser-syntax.el                |  5 ++++-
 scheme/guile/geiser/introspection.scm | 31 ++++++++++++++++++++-----------
 3 files changed, 24 insertions(+), 13 deletions(-)

commit 1a9da365fc52aa15300e03bb14aa4af5b9f47c6a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 12:45:22 2009 +0100

    README stuff.

 .gitignore                            |  1 +
 README                                | 11 +++++++++++
 elisp/geiser-compile.el               |  2 +-
 scheme/guile/geiser/emacs.scm         |  1 -
 scheme/guile/geiser/introspection.scm |  1 +
 5 files changed, 14 insertions(+), 2 deletions(-)

commit e4c958fe1e5bad829e08dbce31f1a23e458ebd6b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 10:47:12 2009 +0100

    Load file commands.

 elisp/geiser-compile.el       | 80 +++++++++++++++++++++++++++++++++++----------------
 elisp/geiser-mode.el          | 12 +++++---
 elisp/geiser-repl.el          |  1 +
 scheme/guile/geiser/emacs.scm |  6 ++--
 scheme/guile/geiser/eval.scm  | 11 ++++---
 5 files changed, 75 insertions(+), 35 deletions(-)

commit 2b2355b6134f5068dfff424f8fda32ae0236a516
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 01:41:53 2009 +0100

    * scheme/guile/geiser/eval.scm: missing file in previous commit

 scheme/guile/geiser/eval.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 6edd43a2b5250cee8f46bacf7c0d799422fae213
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 01:40:59 2009 +0100

    * scheme/guile/geiser/eval.scm: load file after compilation.

 .gitignore | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 .gitignore

commit ba13256d20ce53c7a35092ae2d23debe64c764a5
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Wed Feb 11 01:32:14 2009 +0100

    Compile file.

 elisp/geiser-base.el         |  3 ++
 elisp/geiser-compile.el      | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el         |  3 +-
 elisp/geiser-repl.el         |  5 ++--
 scheme/guile/geiser/eval.scm | 11 ++++++--
 5 files changed, 94 insertions(+), 5 deletions(-)
 create mode 100644 elisp/geiser-compile.el

commit e48d59af292ca82e77733070cf3444ac2e0ba7df
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 23:33:21 2009 +0100

    Guile scheme files moved to scheme/guile.

 elisp/geiser-eval.el                        |  5 ++++-
 elisp/geiser-repl.el                        |  2 +-
 scheme/{ => guile}/geiser/emacs.scm         |  9 +++++++--
 scheme/{ => guile}/geiser/eval.scm          | 10 +++++++---
 scheme/{ => guile}/geiser/introspection.scm |  0
 5 files changed, 19 insertions(+), 7 deletions(-)
 rename scheme/{ => guile}/geiser/emacs.scm (77%)
 rename scheme/{ => guile}/geiser/eval.scm (88%)
 rename scheme/{ => guile}/geiser/introspection.scm (100%)

commit 6bc5dce3118a78e2665bbf981dc61866329269c1
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 17:11:45 2009 +0100

    Multi-level form arity recognition in autodoc.

 elisp/geiser-autodoc.el | 28 ++++++++++++++++------------
 elisp/geiser-syntax.el  | 22 +++++++++++++---------
 2 files changed, 29 insertions(+), 21 deletions(-)

commit 710d1f8be59066f0b52d07b0f43343b3ab671ffa
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 15:12:31 2009 +0100

    Sort completion list in scheme's side.

 elisp/geiser-completion.el      |  7 +++----
 elisp/geiser-eval.el            | 13 ++++++++-----
 scheme/geiser/introspection.scm | 11 +++++++----
 3 files changed, 18 insertions(+), 13 deletions(-)

commit 8b2b6e02b5a7ceaf7b6f91dd302a42141c4ade8a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 01:24:45 2009 +0100

    Small fix for '() argument position reporting.

 elisp/geiser-syntax.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 052e7fb476f018e1426e1bd9394d4fe63db33f45
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 01:08:04 2009 +0100

    Optionally show procedure modules in autodoc.

 elisp/geiser-autodoc.el         | 15 ++++++++++++++-
 scheme/geiser/introspection.scm | 19 +++++++++++--------
 2 files changed, 25 insertions(+), 9 deletions(-)

commit 0490e6d2047aa97be3a0b3e34075557666336679
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 00:06:38 2009 +0100

    Better args reporting for macros.

 scheme/geiser/introspection.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 21ab330125c16075df2ed0168ee3dedf39dd43bd
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Tue Feb 10 00:06:20 2009 +0100

    EVAL-IN: compile code in the correct module.

 scheme/geiser/eval.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

commit c225b4606809739b6d408c915694841ca1aa45c0
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 23:33:24 2009 +0100

    TAB-completion for symbols in Scheme and REPL buffers.

 elisp/geiser-completion.el      | 225 ++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-mode.el            |   2 +
 elisp/geiser-repl.el            |   3 +-
 scheme/geiser/emacs.scm         |   2 +-
 scheme/geiser/introspection.scm |   6 +-
 5 files changed, 235 insertions(+), 3 deletions(-)
 create mode 100644 elisp/geiser-completion.el

commit cb1c7c38f4dbc5af1e4fed7cb9e01897a2cf458e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 22:00:20 2009 +0100

    GEISER-SETUP function activating geiser-mode in scheme files.

 elisp/geiser.el | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit aacdd11a8816430e6bdd2704c52e07466f0cca19
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 21:59:23 2009 +0100

    Better preparation of Scheme results for the Elisp reader.

 elisp/geiser-connection.el |  9 ++-------
 elisp/geiser-syntax.el     | 17 ++++++++++++++++-
 2 files changed, 18 insertions(+), 8 deletions(-)

commit 99c436f18a37a665156f130ab7de720b37c8cf90
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 21:58:10 2009 +0100

    Better bindings for M-p, M-n in geiser repl.

 elisp/geiser-repl.el | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 1099d5bb6da7b6d03f2f5a4f70d0a8c4bec5ceac
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 12:32:30 2009 +0100

    Don't echo any autodoc info when arity is not available.

 elisp/geiser-autodoc.el |  9 +++++----
 elisp/geiser-syntax.el  | 17 ++++++++---------
 2 files changed, 13 insertions(+), 13 deletions(-)

commit 6f7e0e15ac672b13efce7be815d4c550d3ecdf16
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 12:14:04 2009 +0100

    Better argument position detection in autodoc.

 elisp/geiser-syntax.el          | 18 ++++++++++++------
 scheme/geiser/introspection.scm |  2 +-
 2 files changed, 13 insertions(+), 7 deletions(-)

commit 4e7c148fef58281345c1d4d0815732e27977da71
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Mon Feb 9 01:29:26 2009 +0100

    Basic region/definition/sexp evaluation and autodoc mode working.

 elisp/geiser-autodoc.el         | 132 +++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-eval.el            |  27 +++++----
 elisp/geiser-mode.el            | 155 ++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-syntax.el          |  96 ++++++++++++++++++++++++++++++
 elisp/geiser.el                 |   7 ++-
 scheme/geiser/emacs.scm         |  32 ++++++++++
 scheme/geiser/eval.scm          |  16 ++---
 scheme/geiser/introspection.scm |  65 ++++++++++++++++++++
 8 files changed, 509 insertions(+), 21 deletions(-)
 create mode 100644 elisp/geiser-autodoc.el
 create mode 100644 elisp/geiser-mode.el
 create mode 100644 elisp/geiser-syntax.el
 create mode 100644 scheme/geiser/emacs.scm
 create mode 100644 scheme/geiser/introspection.scm

commit e16e29baa9d444be4fd5e60f93c124c666c60b80
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 8 14:16:05 2009 +0100

    Capturing output of scheme evaluations

 elisp/geiser-eval.el   |  1 +
 scheme/geiser/eval.scm | 12 ++++++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

commit 3670817dcc482c75105da7965e7306044171b0d9
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 8 12:47:42 2009 +0100

    Fixes for Elisp/Scheme translations.

 elisp/geiser-connection.el | 10 ++++++++--
 elisp/geiser-eval.el       | 15 +++++++++------
 2 files changed, 17 insertions(+), 8 deletions(-)

commit 0935e89110296b884d06141b5b4386122f18403e
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 8 11:56:30 2009 +0100

    Better error presentation.

 elisp/geiser-eval.el   |  7 ++++++-
 scheme/geiser/eval.scm | 22 ++++++++++++++++++----
 2 files changed, 24 insertions(+), 5 deletions(-)

commit 377d6d19debce5572052727323931f1b8306226b
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sun Feb 8 01:09:07 2009 +0100

    Basic Guile/Emacs connection and evaluation working.

 elisp/geiser-connection.el | 245 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-eval.el       | 112 ++++++++++++++++++++++++
 elisp/geiser-repl.el       | 113 ++++++++++++++++++++++++
 scheme/geiser/eval.scm     |  42 +++++++++
 4 files changed, 512 insertions(+)
 create mode 100644 elisp/geiser-connection.el
 create mode 100644 elisp/geiser-eval.el
 create mode 100644 scheme/geiser/eval.scm

commit 9b4016cd9bce8354ac3eede20345e83db8c65b94
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Sat Feb 7 16:08:42 2009 +0100

    Elisp utilities (mostly imported from FUEL).

 elisp/geiser-base.el  | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-log.el   | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-popup.el | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 elisp/geiser-repl.el  | 40 ++++++++++++++++++++++++
 4 files changed, 323 insertions(+)
 create mode 100644 elisp/geiser-base.el
 create mode 100644 elisp/geiser-log.el
 create mode 100644 elisp/geiser-popup.el
 create mode 100644 elisp/geiser-repl.el

commit 5c83238aa002a0590bd42f37a3344fda24ca547a
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 5 23:50:13 2009 +0100

    Emacs startup file

 elisp/geiser.el | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)
 create mode 100644 elisp/geiser.el

commit 22542ce5b9ad5c9e25806f5d42cb33c6ae47f66c
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 5 23:49:11 2009 +0100

    License file

 COPYING | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 674 insertions(+)
 create mode 100644 COPYING

commit e6824bec1687492c9767b629bfb118b896a74f68
Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
Date:   Thu Feb 5 22:41:22 2009 +0100

    It all begins with an empty tree

 README | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 README
