diff options
author | jao <jao@gnu.org> | 2022-10-21 03:51:47 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-10-21 03:51:47 +0100 |
commit | 413f16c4fa045f268eea3f94e3f64d9e7b322553 (patch) | |
tree | ea55fa1d8c7a5955647240a590b9162fc41183a4 /geiser-guile.el | |
parent | 8f0ffecb430fffc8e32bb49bdc33becfa6846647 (diff) | |
download | geiser-guile-413f16c4fa045f268eea3f94e3f64d9e7b322553.tar.gz geiser-guile-413f16c4fa045f268eea3f94e3f64d9e7b322553.tar.bz2 |
formatting and whitespace
Diffstat (limited to 'geiser-guile.el')
-rw-r--r-- | geiser-guile.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/geiser-guile.el b/geiser-guile.el index 6db40fa..750aa90 100644 --- a/geiser-guile.el +++ b/geiser-guile.el @@ -1,4 +1,4 @@ -;;; geiser-guile.el --- Guile's implementation of the geiser protocols -*- lexical-binding: t; -*- +;;; geiser-guile.el --- Guile and Geiser talk to each other -*- lexical-binding: t; -*- ;; Copyright (C) 2009-2022 Jose Antonio Ortega Ruiz ;; Start date: Sun Mar 08, 2009 23:03 @@ -39,7 +39,7 @@ (require 'tramp)) -;;; Customization: +;;; Customization (defgroup geiser-guile nil "Customization for Geiser's Guile flavour." @@ -164,7 +164,7 @@ effect on new REPLs. For existing ones, use the command :type '(repeat string)) -;;; REPL support: +;;; REPL support (defun geiser-guile--binary () "Return the name of the Guile binary to execute." @@ -265,7 +265,7 @@ This function uses `geiser-guile-init-file' if it exists." "\\(\nEntering a new prompt. Type `,bt' for [^\n]+\\.$\\)")) -;;; Evaluation support: +;;; Evaluation support (defsubst geiser-guile--linearize-args (args) "Concatenate the list ARGS." (mapconcat 'identity args " ")) @@ -379,7 +379,7 @@ This function uses `geiser-guile-init-file' if it exists." (and (stringp f) (list f)))) -;;; Error display +;;; Error display and debugger (defun geiser-guile--set-up-error-links () (setq-local compilation-error-regexp-alist @@ -403,7 +403,7 @@ This function uses `geiser-guile-init-file' if it exists." (not (zerop (length msg)))) -;;; Trying to ascertain whether a buffer is Guile Scheme: +;;; Trying to ascertain whether a buffer is Guile Scheme (defconst geiser-guile--guess-re (format "\\(%s\\|#! *.+\\(/\\| \\)guile\\( *\\\\\\)?\\)" |