]> git.lyx.org Git - features.git/blobdiff - src/factory.C
* src/factory.C
[features.git] / src / factory.C
index 10efffa57f6b60f829e458280a33299c6cbeb359..484bfcf25c02e3f4207f5468f611949ccc7c7cfe 100644 (file)
@@ -351,6 +351,12 @@ InsetBase * readInset(LyXLex & lex, Buffer const & buf)
 
                // This strange command allows LyX to recognize "natbib" style
                // citations: citet, citep, Citet etc.
+               // FIXME: We already have partial support for \\fullcite and
+               // the various \\footcite commands. We should increase the
+               // file format number and read these commands here, too.
+               // Then we should use is_possible_cite_command() in
+               // src/frontends/controllers/biblio.C to test for valid cite
+               // commands.
                if (compare_ascii_no_case(cmdName.substr(0,4), "cite") == 0) {
                        inset.reset(new InsetCitation(inscmd));
                } else if (cmdName == "bibitem") {