diff options
Diffstat (limited to 'elisp/geiser-repl.el')
-rw-r--r-- | elisp/geiser-repl.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 73a2f39..6f28ae8 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -1,6 +1,6 @@ ;;; geiser-repl.el --- Geiser's REPL -;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2018, 2019, 2020 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2018, 2019, 2020, 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 @@ -956,6 +956,11 @@ over a Unix-domain socket." (defun geiser-repl--get-arglist (impl) (or geiser-repl--arglist (geiser-repl--arglist impl))) +(defun geiser-repl--call-in-repl (cmd) + (when-let (b (geiser-repl--repl/impl geiser-impl--implementation)) + (save-window-excursion + (with-current-buffer b (funcall cmd))))) + (defun switch-to-geiser (&optional ask impl buffer) "Switch to running Geiser REPL. |