Removed explicit CFLAG dependencies for src/message.o which no longer exists.
[pspp-builds.git] / src / language / utilities / title.c
index 759208d35122f38405fbe4e5529f780aa50260c4..d494e35e8e2cad2aa96cc1ebb736929c4ca421cf 100644 (file)
 #include <config.h>
 #include <ctype.h>
 #include <stdlib.h>
-#include "alloc.h"
-#include "command.h"
-#include "dictionary.h"
-#include "message.h"
-#include "lexer.h"
-#include "output.h"
-#include "start-date.h"
-#include "variable.h"
-#include "version.h"
-#include "procedure.h"
+#include <libpspp/alloc.h>
+#include <language/command.h>
+#include <data/dictionary.h>
+#include <libpspp/message.h>
+#include <language/lexer/lexer.h>
+#include <output/output.h>
+#include <libpspp/start-date.h>
+#include <data/variable.h>
+#include <libpspp/version.h>
+#include <procedure.h>
 
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
 
-#include "debug-print.h"
-
 static int get_title (const char *cmd, char **title);
 
 int
@@ -56,7 +54,6 @@ get_title (const char *cmd, char **title)
   int c;
 
   c = lex_look_ahead ();
-  debug_printf ((_("%s before: %s\n"), cmd, *title ? *title : _("<none>")));
   if (c == '"' || c == '\'')
     {
       lex_get ();
@@ -84,7 +81,6 @@ get_title (const char *cmd, char **title)
        *cp = toupper ((unsigned char) (*cp));
       token = '.';
     }
-  debug_printf ((_("%s after: %s\n"), cmd, *title));
   return CMD_SUCCESS;
 }