]> git.lyx.org Git - lyx.git/blobdiff - src/sgml.C
Move #includes out of header files.
[lyx.git] / src / sgml.C
index 435d71cc13cf8a57a94337d87ef17c35307d1c36..a8ff48dad040b17a9e658bc063f251b08428dc38 100644 (file)
@@ -1,10 +1,12 @@
 /**
  * \file sgml.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author José Matos
- * \author John Levon <levon@movementarian.org>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
@@ -26,11 +28,6 @@ pair<bool, string> escapeChar(char c)
        string str;
 
        switch (c) {
-       case Paragraph::META_HFILL:
-               break;
-       case Paragraph::META_NEWLINE:
-               str = '\n';
-               break;
        case ' ':
                return make_pair(true, string(" "));
                break;