diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2016-06-11 18:37:36 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2016-06-11 18:37:36 +0200 |
commit | ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a (patch) | |
tree | a22cc5b34da6130a7566d282015cfe9733358db6 /elisp/geiser-guile.el | |
parent | d8cb36651aa628075df494c0a1515d98d5a75adf (diff) | |
download | geiser-guile-ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a.tar.gz geiser-guile-ae6689f1de9bd43af9c096c7eae66f40d4d8cd8a.tar.bz2 |
Cleanups to the show/jump debug buffer mess
Let's see if i finally got this right...
Diffstat (limited to 'elisp/geiser-guile.el')
-rw-r--r-- | elisp/geiser-guile.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el index c4f6293..de2e23f 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, 2010, 2011, 2012, 2013, 2014, 2015 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 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 @@ -224,11 +224,10 @@ This function uses `geiser-guile-init-file' if it exists." (ignore-errors (next-error))))) (defun geiser-guile--display-error (module key msg) - (newline) (when (stringp msg) (save-excursion (insert msg)) (geiser-edit--buttonize-files)) - (and (not key) msg (not (zerop (length msg))))) + (and (not key) (not (zerop (length msg))) msg)) ;;; Trying to ascertain whether a buffer is Guile Scheme: |