From c8adc394b79e928d38722327cc18c7dfc6f1cb26 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 20 Nov 2009 11:55:18 +0100 Subject: Choose the right encoding for input documents. * src/guile/skribilo.scm (skribilo): Use the right encoding for the current input port. * src/guile/skribilo/evaluator.scm (load-document, include-document): Likewise. * doc/user/user.skb: Add a `coding:' comment for use by Guile at the top. --- src/guile/skribilo.scm | 5 +++++ src/guile/skribilo/evaluator.scm | 12 +++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) (limited to 'src/guile') diff --git a/src/guile/skribilo.scm b/src/guile/skribilo.scm index 7208a00..7d066da 100644 --- a/src/guile/skribilo.scm +++ b/src/guile/skribilo.scm @@ -387,6 +387,11 @@ options." (if input-file (with-input-from-file input-file (lambda () + (cond-expand (guile-2 + ;; Use the encoding specified by the `coding:' + ;; comment. + (let ((p (current-input-port))) + (set-port-encoding! p (file-encoding p))))) (doskribe user-module))) (doskribe user-module)) diff --git a/src/guile/skribilo/evaluator.scm b/src/guile/skribilo/evaluator.scm index 329ba61..6ca0f13 100644 --- a/src/guile/skribilo/evaluator.scm +++ b/src/guile/skribilo/evaluator.scm @@ -1,7 +1,7 @@ ;;; eval.scm -- Skribilo evaluator. ;;; +;;; Copyright 2005, 2006, 2009 Ludovic Courtès ;;; Copyright 2003, 2004 Erick Gallesio - I3S-CNRS/ESSI -;;; Copyright 2005, 2006, 2007 Ludovic Courtès ;;; ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -188,6 +188,12 @@ ;; Load it (with-input-from-file filep (lambda () + (cond-expand (guile-2 + ;; Use the encoding specified by the `coding:' + ;; comment. + (let ((p (current-input-port))) + (set-port-encoding! p + (file-encoding p))))) (evaluate-document-from-port (current-input-port) ei :module module :reader reader))) @@ -215,6 +221,10 @@ (with-input-from-file full-path (lambda () + (cond-expand (guile-2 + ;; Use the encoding specified by the `coding:' comment. + (let ((p (current-input-port))) + (set-port-encoding! p (file-encoding p))))) (save-module-excursion (lambda () (set-current-module module) -- cgit v1.2.3