Fix Bug 1057: Emacs output does not escape special characters.
This commit is contained in:
parent
3a2eb94bef
commit
db73e7af9e
2 changed files with 69 additions and 62 deletions
10
src/emacs.cc
10
src/emacs.cc
|
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#include <system.hh>
|
||||
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include "emacs.h"
|
||||
#include "xact.h"
|
||||
#include "post.h"
|
||||
|
|
@ -103,7 +103,7 @@ void format_emacs_posts::operator()(post_t& post)
|
|||
if (post.cost)
|
||||
out << " \"" << *post.cost << "\"";
|
||||
if (post.note)
|
||||
out << " \"" << *post.note << "\"";
|
||||
out << " \"" << escape_string(*post.note) << "\"";
|
||||
out << ")";
|
||||
|
||||
last_xact = post.xact;
|
||||
|
|
@ -112,4 +112,10 @@ void format_emacs_posts::operator()(post_t& post)
|
|||
}
|
||||
}
|
||||
|
||||
string format_emacs_posts::escape_string(string raw){
|
||||
replace_all(raw, "\\", "\\\\");
|
||||
replace_all(raw, "\"", "\\\"");
|
||||
return raw;
|
||||
}
|
||||
|
||||
} // namespace ledger
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ public:
|
|||
out.flush();
|
||||
}
|
||||
virtual void operator()(post_t& post);
|
||||
virtual string escape_string(string raw);
|
||||
};
|
||||
|
||||
} // namespace ledger
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue