diff options
author | jao <jao@gnu.org> | 2025-01-19 14:24:32 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-01-19 14:24:55 +0000 |
commit | c1c27072a46a959fa28f963c5e381e219916f85a (patch) | |
tree | 89e97bc62c0f502f2f7415601ab2ae705c890e8e /elisp | |
parent | 74eed1669aec9bb45c96440dfb6d8c1c6ecfbb5f (diff) | |
download | geiser-master.tar.gz geiser-master.tar.bz2 |
fixes #69
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-connection.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el index af185b4..68fd412 100644 --- a/elisp/geiser-connection.el +++ b/elisp/geiser-connection.el @@ -1,6 +1,6 @@ ;;; geiser-connection.el --- Talking to a scheme process -*- lexical-binding: t; -*- -;; Copyright (C) 2009-2011, 2013, 2021-2022 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009-2011, 2013, 2021-2022, 2025 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 @@ -87,7 +87,7 @@ (unwind-protect (funcall (tq-queue-head-fn tq) (tq-queue-head-closure tq) - (buffer-substring (point-min) (match-beginning 0))) + (buffer-substring (point-min) (point))) (delete-region (point-min) (point-max)) (tq-queue-pop tq))))))) |