]> git.lyx.org Git - lyx.git/blobdiff - src/BufferList.cpp
Add a pending space after math if it is not the last of the selection. This fixes...
[lyx.git] / src / BufferList.cpp
index c83d3f20e235a94f6f27d47fdb6822c291fc781a..0ff0fa697cddcd6a7b1525ca82eb501f9405a40e 100644 (file)
@@ -316,7 +316,7 @@ Buffer * BufferList::getBuffer(support::FileName const & fname) const
                bind(equal_to<FileName>(), bind(&Buffer::fileName, _1), fname));
        if (it != bstore.end())
                        return *it;
-       // 2) possibly expensive test, using quivalence test of file names
+       // 2) possibly expensive test, using equivalence test of file names
        it = find_if(bstore.begin(), bstore.end(),
                bind(equivalent_to(), bind(&Buffer::fileName, _1), fname));
        return it != bstore.end() ? (*it) : 0;