]> git.lyx.org Git - lyx.git/blobdiff - src/LyXAction.C
More 'standard conformant blurb' nonsense.
[lyx.git] / src / LyXAction.C
index 89c883ed2691a5978e8739c85626ef62d41ea8f1..42a8a091345afdf912deae4083f3e84839e4353b 100644 (file)
@@ -222,6 +222,7 @@ void LyXAction::init()
                { LFUN_MENU_SEPARATOR, "menu-separator-insert", Noop },
                { LFUN_META_FAKE, "meta-prefix", NoBuffer },
                { LFUN_INSET_MINIPAGE, "minipage-insert", Noop },
+               { LFUN_INSERT_BRANCH, "branch-insert", Noop },
                { LFUN_INSERT_NOTE, "note-insert", Noop },
                { LFUN_GOTONOTE, "note-next", ReadOnly },
                { LFUN_INSET_TOGGLE, "inset-toggle", ReadOnly },
@@ -398,7 +399,7 @@ FuncRequest LyXAction::retrieveActionArg(int pseudo) const
        if (pit != lyx_pseudo_map.end()) {
                lyxerr[Debug::ACTION] << "Found the pseudoaction: ["
                                      << pit->second.action << '|'
-                                     << pit->second.argument << "]\n";
+                                     << pit->second.argument << "]" << endl;
                return pit->second;
        } else {
                lyxerr << "Lyx Error: Unrecognized pseudo-action "
@@ -417,8 +418,8 @@ int LyXAction::LookupFunc(string const & func)
        // split action and arg
        string actstr;
        string const argstr = split(func2, actstr, ' ');
-       lyxerr[Debug::ACTION] << "Action: " << actstr << '\n';
-       lyxerr[Debug::ACTION] << "Arg   : " << argstr << '\n';
+       lyxerr[Debug::ACTION] << "Action: " << actstr << '\n'
+                             << "Arg   : " << argstr << endl;
 
        func_map::const_iterator fit = lyx_func_map.find(actstr);