guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

16/64: Remove unnecessary quotes around file names


From: Ludovic Courtès
Subject: 16/64: Remove unnecessary quotes around file names
Date: Mon, 05 Jan 2015 16:38:54 +0000

civodul pushed a commit to branch nix
in repository guix.

commit 8b31ffd10de44871a3912184fedbeca57d8cf60f
Author: Eelco Dolstra <address@hidden>
Date:   Fri Apr 4 17:58:23 2014 +0200

    Remove unnecessary quotes around file names
---
 src/libexpr/nixexpr.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc
index ba1f4f0..92f46b3 100644
--- a/src/libexpr/nixexpr.cc
+++ b/src/libexpr/nixexpr.cc
@@ -148,7 +148,7 @@ std::ostream & operator << (std::ostream & str, const Pos & 
pos)
     if (!pos.line)
         str << "undefined position";
     else
-        str << (format("`%1%:%2%:%3%'") % pos.file % pos.line % 
pos.column).str();
+        str << (format("%1%:%2%:%3%") % pos.file % pos.line % 
pos.column).str();
     return str;
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]