From 045b61b8681222456b8df6d4d153907a6879eca9 Mon Sep 17 00:00:00 2001 From: jao Date: Fri, 3 Dec 2021 21:24:45 +0000 Subject: Fix: more careful display of signatures In some cases, Guile cannot figure out a signature and it comes back as #f (:t in emacs-land), rather than a list. --- elisp/geiser-autodoc.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'elisp/geiser-autodoc.el') diff --git a/elisp/geiser-autodoc.el b/elisp/geiser-autodoc.el index a92cb35..7bd8a8c 100644 --- a/elisp/geiser-autodoc.el +++ b/elisp/geiser-autodoc.el @@ -1,6 +1,6 @@ ;;; geiser-autodoc.el -- autodoc mode -;; Copyright (C) 2009, 2010, 2011, 2012, 2015, 2016 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2011, 2012, 2015, 2016, 2021 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -134,8 +134,9 @@ when `geiser-autodoc-display-module-p' is on." (propertize str 'face 'geiser-font-lock-autodoc-identifier))) (defun geiser-autodoc--str* (full-signature) - (let ((geiser-font-lock-autodoc-current-arg 'default)) - (geiser-autodoc--str (list (car full-signature)) full-signature))) + (let ((geiser-font-lock-autodoc-current-arg 'default) + (sign (if (listp full-signature) full-signature (list full-signature)))) + (geiser-autodoc--str (list (car sign)) sign))) (defsubst geiser-autodoc--value-str (proc module value) (let ((name (geiser-autodoc--id-name proc module))) -- cgit v1.2.3