]> git.lyx.org Git - lyx.git/blobdiff - src/client/client.cpp
Remove connections
[lyx.git] / src / client / client.cpp
index f303c1833efe3466c7bf3a6810235f407fb53075..023e73e96b44e45facfb9af06232bd0164a0287b 100644 (file)
@@ -66,6 +66,9 @@ using namespace lyx::support;
 
 namespace lyx {
 
+// Dummy verbose support
+bool verbose = false;
+
 // Dummy LyXRC support
 struct LyXRC {
        string icon_set;
@@ -504,9 +507,11 @@ int g(vector<docstring> const & arg)
                     << endl;
                return -1;
        }
-       singleCommand = "LYXCMD:server-goto-file-row "
-               + arg[0] + ' '
-               + arg[1];
+       singleCommand = "LYXCMD:command-sequence "
+               "server-goto-file-row "
+                       + arg[0] + ' '
+                       + arg[1] + "; " +
+               "lyx-activate";
        return 2;
 }