]> git.lyx.org Git - lyx.git/blobdiff - src/FuncRequest.cpp
tex2lyx: add strike-outs etc. to the TeX testfile
[lyx.git] / src / FuncRequest.cpp
index d37fd924a371bcfd3a96f74924d8f6fa0dd74010..1d98ca1ea0116fdcd707f5e8eca8a8ba3114b703 100644 (file)
@@ -74,9 +74,9 @@ namespace {
 
 // Extracts arguments from str into args. Arguments are delimted by
 // whitespace or by double quotes.
-// We extract at most max + 1 arguments, treating args[max] as 
+// We extract at most max + 1 arguments, treating args[max] as
 // continuing to eol.
-void splitArg(vector<string> & args, string const & str, 
+void splitArg(vector<string> & args, string const & str,
                unsigned int max = UINT_MAX)
 {
        istringstream is(str);
@@ -86,7 +86,7 @@ void splitArg(vector<string> & args, string const & str,
                        getline(is, s);
                        args.push_back(trim(s));
                        return;
-               }               
+               }
 
                char c;
                string s;