diff options
| author | jao <jao@gnu.org> | 2026-04-26 18:25:32 +0100 |
|---|---|---|
| committer | jao <jao@gnu.org> | 2026-04-26 18:25:32 +0100 |
| commit | f9b7b1f86e5b0cd9ee02749ec0ab9e53a044e2f5 (patch) | |
| tree | b0db96d277e83c1d8ef1c89ce2118c0f2e46fac2 | |
| parent | 7270fa2a80c11441e0427978250e2e677f8b38dd (diff) | |
| download | geiser-f9b7b1f86e5b0cd9ee02749ec0ab9e53a044e2f5.tar.gz geiser-f9b7b1f86e5b0cd9ee02749ec0ab9e53a044e2f5.tar.bz2 | |
Revert "filtering out ansi colour codes coming from a connection"
This reverts commit db9a62cdfc197f5905f142ffebd1d5bcb978944c.
The problems with guile-colorized go deeper than simply removing control
codes.
| -rw-r--r-- | elisp/geiser-connection.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/elisp/geiser-connection.el b/elisp/geiser-connection.el index 5f1e782..74f620b 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, 2025-2026 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 @@ -23,7 +23,6 @@ (require 'geiser-impl) (require 'tq) -(require 'ansi-color) (eval-when-compile (require 'subr-x)) @@ -82,7 +81,7 @@ (progn (geiser-log--error "Unexpected queue input:\n %s" in) (delete-region (point-min) (point-max))) (goto-char (point-max)) - (insert (ansi-color-filter-apply in)) + (insert in) (goto-char (point-min)) (when (re-search-forward (tq-queue-head-regexp tq) nil t) (unwind-protect |
