]> git.lyx.org Git - features.git/commitdiff
fix warnings
authorJohn Levon <levon@movementarian.org>
Tue, 12 Nov 2002 23:50:56 +0000 (23:50 +0000)
committerJohn Levon <levon@movementarian.org>
Tue, 12 Nov 2002 23:50:56 +0000 (23:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5619 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/biblio.C

index 8d99afc6ade4cfcba3ff87ca69525fb18658ca24..cc48a7d12073e2add88abc4b6f057459a5eb43e6 100644 (file)
@@ -1,3 +1,7 @@
+2002-11-12  John Levon  <levon@movementarian.org>
+
+       * biblio.C: fix warnings
 2002-11-12  Angus Leeming  <leeming@lyx.org>
 
        * ControlSpellchecker.C (check): fix crash
index f4d978cc88fdbf318e13cc55b48b05aec7b57c6b..edbae55c0ef54dcab5071fcd526c5bcb6eac04fe 100644 (file)
@@ -239,11 +239,11 @@ string const getInfo(InfoMap const & map, string const & key)
 namespace {
 
 // Escape special chars.
-// All characters are literals except: .|*?+(){}[]^$\
+// All characters are literals except: '.|*?+(){}[]^$\'
 // These characters are literals when preceded by a "\", which is done here
 string const escape_special_chars(string const & expr)
 {
-       // Search for all chars .|*?+(){}[^$]\
+       // Search for all chars '.|*?+(){}[^$]\'
        // Note that '[', ']' and '\' must be escaped.
        // This is a limitation of boost::regex, but all other chars in BREs
        // are assumed literal.