From: Georg Baum Date: Mon, 30 Mar 2015 20:04:52 +0000 (+0200) Subject: Initialize definition_ correctly X-Git-Tag: 2.2.0alpha1~1082 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=af6cb2d0e239a4e84a8e25c947862c215aac93f4;p=features.git Initialize definition_ correctly --- diff --git a/src/mathed/MathMacro.cpp b/src/mathed/MathMacro.cpp index b23be099dc..4cdecbd49b 100644 --- a/src/mathed/MathMacro.cpp +++ b/src/mathed/MathMacro.cpp @@ -136,7 +136,8 @@ private: MathMacro::MathMacro(Buffer * buf, docstring const & name) : InsetMathNest(buf, 0), name_(name), displayMode_(DISPLAY_INIT), - expanded_(buf), attachedArgsNum_(0), optionals_(0), nextFoldMode_(true), + expanded_(buf), definition_(buf), attachedArgsNum_(0), + optionals_(0), nextFoldMode_(true), macroBackup_(buf), macro_(0), needsUpdate_(false), isUpdating_(false), appetite_(9) {}