From 2a9b15aefb842a734637f3d230936ea1b7c60096 Mon Sep 17 00:00:00 2001 From: Philip Kime Date: Thu, 8 Nov 2018 22:02:09 +0100 Subject: [PATCH] Fix to address #239 --- lib/Biber.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Biber.pm b/lib/Biber.pm index 8b1f80a5..d97fca29 100644 --- a/lib/Biber.pm +++ b/lib/Biber.pm @@ -311,6 +311,8 @@ sub parse_ctrlfile { unless (eval {$checkbuf = File::Slurper::read_text($ctrl_file_path, 'latin1')}) { biber_error("$ctrl_file_path is not UTF-8 or even latin1, how horrible."); } + # Write ctrl file as UTF-8 + File::Slurper::write_text($ctrl_file_path, NFC($checkbuf));# Unicode NFC boundary } $checkbuf = NFD($checkbuf);# Unicode NFD boundary @@ -319,8 +321,6 @@ sub parse_ctrlfile { unlink($output) unless $output eq '-';# ignore deletion of STDOUT marker biber_error("$ctrl_file_path is malformed, last biblatex run probably failed. Deleted $output"); } - # Write ctrl file as UTF-8 - File::Slurper::write_text($ctrl_file_path, NFC($checkbuf));# Unicode NFC boundary # Validate if asked to if (Biber::Config->getoption('validate_control')) { 51137ebba64f017db'>refslogtreecommitdiff
path: root/gnu/packages/guile-xyz.scm
AgeCommit message (Collapse)Author
2023-07-18gnu: texlive-fonts-iwona -> texlive-iwona.Nicolas Goaziou
* gnu/packages/tex.scm (texlive-iwona): New variable. (texlive-fonts-iwona): Deprecate variable. * gnu/packages/guile-xyz.scm (guile-cv)[native-inputs]: Use new name.
2023-07-11gnu: guile-hashing: Fix description.Bruno Victal
* gnu/packages/guile-xyz.scm (guile-hashing)[description]: Fix typo. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-07-05gnu: guile-jsonld: Improve package style.Z572
* gnu/packages/guile-xyz.scm (guile-jsonld): Improve overall indentation. [propagated-inputs]: Remove labels. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-07-05gnu: guile-jsonld: Fix build.Z572
* gnu/packages/guile-xyz.scm (guile-jsonld)[propagated-inputs]: Replace GNUTLS with GUILE-GNUTLS. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-07-01gnu: guile-squee: Update to 0-5.9f26095.Christopher Baines
* gnu/packages/guile-xyz.scm (guile-squee): Update to 0-5.9f26095. [arguments]: Update style.
2023-06-21gnu: Add guile-ffi-cblas.Ludovic Courtès
* gnu/packages/guile-xyz.scm (guile-ffi-cblas): New variable.