aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/register.cc
diff options
context:
space:
mode:
authorAlberto Gonzalez <boqwxp@airmail.cc>2020-04-10 20:06:12 +0000
committerAlberto Gonzalez <boqwxp@airmail.cc>2020-04-15 16:15:51 +0000
commit76c9e1c26505894546610cb06ff9a861c1be5859 (patch)
treef25d41766d367abe1fdd094bc5a0d818e385fbd7 /kernel/register.cc
parentb5ecbbef9451ab5648822b02fd8e458cfac49a80 (diff)
downloadyosys-76c9e1c26505894546610cb06ff9a861c1be5859.tar.gz
yosys-76c9e1c26505894546610cb06ff9a861c1be5859.tar.bz2
yosys-76c9e1c26505894546610cb06ff9a861c1be5859.zip
Use script-style heredoc syntax for REPL heredocs.
Diffstat (limited to 'kernel/register.cc')
-rw-r--r--kernel/register.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/kernel/register.cc b/kernel/register.cc
index ad9d0ac94..925d0d776 100644
--- a/kernel/register.cc
+++ b/kernel/register.cc
@@ -479,27 +479,27 @@ void Frontend::extra_args(std::istream *&f, std::string &filename, std::vector<s
{
std::string arg = args[argidx];
- if (arg.compare(0, 1, "-") == 0 && arg != "-")
+ if (arg.compare(0, 1, "-") == 0)
cmd_error(args, argidx, "Unknown option or option in arguments.");
if (f != NULL)
cmd_error(args, argidx, "Extra filename argument in direct file mode.");
- filename = (arg == "-")? "<stdin>" : arg;
+ filename = arg;
//Accommodate heredocs with EOT marker spaced out from "<<", e.g. "<< EOT" vs. "<<EOT"
if (filename == "<<" && argidx+1 < args.size())
filename += args[++argidx];
- if (filename.compare(0, 2, "<<") == 0 || filename == "<stdin>") {
- if (Frontend::current_script_file == NULL && filename != "<stdin>")
- log_error("Unexpected here document '%s' outside of script!\n", filename.c_str());
+ if (filename.compare(0, 2, "<<") == 0) {
if (filename.size() <= 2)
log_error("Missing EOT marker in here document!\n");
- std::string eot_marker = filename == "<stdin>"? "EOT" : filename.substr(2); //"EOT" hardcoded as EOT marker when reading from stdin
+ std::string eot_marker = filename.substr(2);
+ if (Frontend::current_script_file == nullptr)
+ filename = "<stdin>";
last_here_document.clear();
while (1) {
std::string buffer;
char block[4096];
while (1) {
- if (fgets(block, 4096, filename == "<stdin>"? stdin : Frontend::current_script_file) == NULL)
+ if (fgets(block, 4096, Frontend::current_script_file == nullptr? stdin : Frontend::current_script_file) == nullptr)
log_error("Unexpected end of file in here document '%s'!\n", filename.c_str());
buffer += block;
if (buffer.size() > 0 && (buffer[buffer.size() - 1] == '\n' || buffer[buffer.size() - 1] == '\r'))