]> git.lyx.org Git - features.git/commitdiff
print psuedoaction on failure
authorJohn Levon <levon@movementarian.org>
Mon, 22 Jul 2002 18:26:56 +0000 (18:26 +0000)
committerJohn Levon <levon@movementarian.org>
Mon, 22 Jul 2002 18:26:56 +0000 (18:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4747 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/LyXAction.C

index 7ef6e4d0fb7f612d04e3d3ce36d5fa6ae9ab149c..608982807a4ab653729ba568850aaf3d56b82e00 100644 (file)
@@ -1,3 +1,7 @@
+2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
+
+       * LyXAction.C: show the failing pseudo action
 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
 
        * buffer.C (readFile): Run the lyxconvert script in order to read
index ae4e14e908728c579011a21875a2afc5cd95240c..5a3439d205800bd92b2a750365e06cef662df219 100644 (file)
@@ -525,7 +525,8 @@ kb_action LyXAction::retrieveActionArg(int pseudo, string & arg) const
                arg = pit->second.arg;
                return pit->second.action;
        } else {
-               lyxerr << "Lyx Error: Unrecognized pseudo-action\n";
+               lyxerr << "Lyx Error: Unrecognized pseudo-action "
+                       << pseudo << endl;
                return LFUN_UNKNOWN_ACTION;
        }
 }