From f9b7b1f86e5b0cd9ee02749ec0ab9e53a044e2f5 Mon Sep 17 00:00:00 2001 From: jao Date: Sun, 26 Apr 2026 18:25:32 +0100 Subject: 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. --- elisp/geiser-connection.el | 5 ++--- 1 file 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 -- cgit v1.2.3