branch: elpa/geiser-guile
commit b3341745723a21210b3d337ea7b20dc0e743b663
Author: Jose Antonio Ortega Ruiz <[email protected]>
Commit: Jose Antonio Ortega Ruiz <[email protected]>
Cleanups to the show/jump debug buffer mess
Let's see if i finally got this right...
---
elisp/geiser-guile.el | 5 ++---
1 file 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: