]> git.lyx.org Git - features.git/commitdiff
#if 0 -> #if 1 so that natbib citations actually work.
authorAngus Leeming <leeming@lyx.org>
Tue, 12 Nov 2002 13:18:07 +0000 (13:18 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 12 Nov 2002 13:18:07 +0000 (13:18 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5615 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/ChangeLog
src/support/lstrings.C

index 7824345f983b71bc66917e9623d9171c163a954f..5407d3ef453098e1182da6574d259c7a2bc87fec 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-12  Angus Leeming  <aleem@pneumon.bg.ic.ac.uk>
+
+       * lstrings.C (getVectorFromString): #if 0 -> #if 1 until Lars devises
+       a solution that he likes and which actually works.
+
 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
 
        * lstrings.h (tostr): STRCONV
index 89ef75f0a75ce53a427263bc6570047d93404a0a..b3d87cedaa21332d7b497a7c7ee8f77e2eb5502a 100644 (file)
@@ -616,7 +616,10 @@ string const escape(string const & lab)
 vector<string> const getVectorFromString(string const & str,
                                         string const & delim)
 {
-#if 0
+// Lars would like this code to go, but for now his replacement (below)
+// doesn't fullfil the same function. I have, therefore, reactivated the
+// old code for now. Angus 11 Nov 2002.
+#if 1
        vector<string> vec;
        if (str.empty())
                return vec;