]> git.lyx.org Git - lyx.git/blobdiff - src/xml.cpp
Limit the nopassthurchars case in beamer to URL
[lyx.git] / src / xml.cpp
index 53ccb8a8c83ee3cc7255e9cadf93b71f82d3458d..5b81024336481a9c612e639bd221e435d8f29717 100644 (file)
@@ -287,6 +287,16 @@ XMLStream &XMLStream::operator<<(docstring const &d)
 }
 
 
+XMLStream &XMLStream::operator<<(xml::NullTag const &)
+{
+       is_last_tag_cr_ = false;
+       clearTagDeque();
+       // Don't output anything to os_, by definition of a NullTag (as opposed to text output).
+       escape_ = ESCAPE_ALL;
+       return *this;
+}
+
+
 XMLStream &XMLStream::operator<<(const char *s)
 {
        is_last_tag_cr_ = false;