diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2018-01-30 23:45:41 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2018-01-30 23:45:41 +0100 |
commit | 3f2272ecf02c8049ea5f250e6263d0f9441a0bd8 (patch) | |
tree | 908f6030f89a8833963377a1254ee252d40a5672 /elisp | |
parent | 33783307abab46433ce18273f562b3a729628e8e (diff) | |
download | geiser-guile-3f2272ecf02c8049ea5f250e6263d0f9441a0bd8.tar.gz geiser-guile-3f2272ecf02c8049ea5f250e6263d0f9441a0bd8.tar.bz2 |
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.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-guile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el index 6b39435..160f40c 100644 --- a/elisp/geiser-guile.el +++ b/elisp/geiser-guile.el @@ -1,6 +1,6 @@ ;; geiser-guile.el -- guile's implementation of the geiser protocols -;; Copyright (C) 2009-2017 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009-2018 Jose Antonio Ortega Ruiz ;; Copyright (C) 2017 Jan Nieuwenhuizen <janneke@gnu.org> ;; This program is free software; you can redistribute it and/or @@ -334,7 +334,7 @@ This function uses `geiser-guile-init-file' if it exists." ;;; REPL startup -(defconst geiser-guile-minimum-version "2.0") +(defconst geiser-guile-minimum-version "2.2") (defun geiser-guile--version (binary) (car (process-lines binary "-c" "(display (version))"))) |