From 52ebcd6280078e591e463f9b54c6badefc1cf9e4 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Thu, 22 May 2014 11:51:21 +0200 Subject: [PATCH] Correct the check for a command. --- src/Text3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Text3.cpp b/src/Text3.cpp index 9fc8d6f8cc..31e082644c 100644 --- a/src/Text3.cpp +++ b/src/Text3.cpp @@ -1074,10 +1074,10 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd) Paragraph const & prevpar = pit > 0 ? pars_[pit - 1] : par; if (pit > 0 && cur.pos() == par.beginOfBody() && !par.isEnvSeparator(cur.pos()) + && !par.layout().isCommand() && ((prevpar.getDepth() > par.getDepth() && !par.layout().isEnvironment()) || (prevpar.layout() != par.layout() - && !par.layout().isCommand() && prevpar.layout().isEnvironment()))) { if (par.layout().isEnvironment()) { docstring const layout = par.layout().name(); -- 2.39.5