summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2013-07-01 20:17:23 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2013-07-01 20:17:23 +0200
commitb63597f22f8164da9dc7c5064e56411c877388c6 (patch)
treed69fb6621ce957e413d946b4c6e98e2c2d4e35df /elisp
parentc31f439314626cc314cab88117a950271c4df4b5 (diff)
downloadgeiser-chez-b63597f22f8164da9dc7c5064e56411c877388c6.tar.gz
geiser-chez-b63597f22f8164da9dc7c5064e56411c877388c6.tar.bz2
Another not entirely satisfactory experiment with raw-text
Diffstat (limited to 'elisp')
-rw-r--r--elisp/geiser-repl.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el
index 95c2e72..4106fe8 100644
--- a/elisp/geiser-repl.el
+++ b/elisp/geiser-repl.el
@@ -412,13 +412,13 @@ module command as a string")
(defun geiser-repl--read-input-ring ()
(let ((comint-input-ring-file-name (geiser-repl--history-file))
(comint-input-ring-separator geiser-repl--history-separator)
- (default-buffer-file-coding-system 'utf-8)))
+ (default-buffer-file-coding-system 'raw-text))
(comint-read-input-ring t)))
(defun geiser-repl--write-input-ring ()
(let ((comint-input-ring-file-name (geiser-repl--history-file))
(comint-input-ring-separator geiser-repl--history-separator)
- (default-buffer-file-coding-system 'utf-8))
+ (default-buffer-file-coding-system 'raw-text))
(comint-write-input-ring)))
(defun geiser-repl--history-setup ()