]> git.lyx.org Git - lyx.git/blobdiff - src/FuncRequest.cpp
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / FuncRequest.cpp
index eeebca2891c6346a79582809b060aaed1ab4485d..c7624c38ae336775ffe6e2da052f8ffac60dbb8b 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "support/lstrings.h"
 
+#include <climits>
 #include <iostream>
 #include <sstream>
 #include <vector>
@@ -76,7 +77,12 @@ mouse_button::state FuncRequest::button() const
 
 namespace {
 
-void splitArg(vector<string> & args, string const & str, unsigned int max)
+// 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 
+// continuing to eol.
+void splitArg(vector<string> & args, string const & str, 
+               unsigned int max = UINT_MAX)
 {
        istringstream is(str);
        while (is) {
@@ -92,8 +98,10 @@ void splitArg(vector<string> & args, string const & str, unsigned int max)
                is >> c;
                if (is) {
                        if (c == '"')
+                               // get quote delimited argument
                                getline(is, s, '"');
                        else {
+                               // get whitespace delimited argument
                                is.putback(c);
                                is >> s;
                        }
@@ -107,7 +115,7 @@ void splitArg(vector<string> & args, string const & str, unsigned int max)
 string FuncRequest::getArg(unsigned int i) const
 {
        vector<string> args;
-       splitArg(args, to_utf8(argument_), string::npos);
+       splitArg(args, to_utf8(argument_));
        return i < args.size() ? args[i] : string();
 }