From d2915c6625d6d21d7d583797da8eea77ee608e3a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 11 Jan 2012 17:55:15 -0600 Subject: Fixed doubled quotes in pathnames in emacs report Fixes #580 --- src/emacs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/emacs.cc') diff --git a/src/emacs.cc b/src/emacs.cc index 7abdfd7f..d5e40114 100644 --- a/src/emacs.cc +++ b/src/emacs.cc @@ -41,7 +41,7 @@ namespace ledger { void format_emacs_posts::write_xact(xact_t& xact) { if (xact.pos) - out << "\"" << xact.pos->pathname << "\" " + out << "\"" << xact.pos->pathname.string() << "\" " << xact.pos->beg_line << " "; else out << "\"\" " << -1 << " "; -- cgit v1.2.3