changeset 23466:5da300c55e89

use "" instead of <> for including defaults.h and version.h * defaults.cc, dynamic-ld.cc, help.cc, interpreter.cc, oct-hist.cc, toplev.cc, utils.cc, variables.cc, ov-dld-fcn.cc, ov-mex-fcn.cc, ov-usr-fcn.cc: Use "" instead of <> for including defaults.h and version.h.
author John W. Eaton <jwe@octave.org>
date Wed, 03 May 2017 15:22:21 -0400
parents 342e485c796d
children f267a982478f
files libinterp/corefcn/defaults.cc libinterp/corefcn/dynamic-ld.cc libinterp/corefcn/help.cc libinterp/corefcn/interpreter.cc libinterp/corefcn/oct-hist.cc libinterp/corefcn/toplev.cc libinterp/corefcn/utils.cc libinterp/corefcn/variables.cc libinterp/octave-value/ov-dld-fcn.cc libinterp/octave-value/ov-mex-fcn.cc libinterp/octave-value/ov-usr-fcn.cc
diffstat 11 files changed, 12 insertions(+), 13 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/defaults.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/defaults.cc	Wed May 03 15:22:21 2017 -0400
@@ -36,7 +36,7 @@
 #include "pathsearch.h"
 #include "str-vec.h"
 
-#include <defaults.h>
+#include "defaults.h"
 #include "defun.h"
 #include "error.h"
 #include "file-ops.h"
@@ -50,7 +50,7 @@
 #include "interpreter.h"
 #include "unwind-prot.h"
 #include "variables.h"
-#include <version.h>
+#include "version.h"
 
 std::string Voctave_home;
 
--- a/libinterp/corefcn/dynamic-ld.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/dynamic-ld.cc	Wed May 03 15:22:21 2017 -0400
@@ -32,8 +32,7 @@
 #include "oct-time.h"
 #include "singleton-cleanup.h"
 
-#include <defaults.h>
-
+#include "defaults.h"
 #include "defun.h"
 #include "dynamic-ld.h"
 #include "ov-fcn.h"
--- a/libinterp/corefcn/help.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/help.cc	Wed May 03 15:22:21 2017 -0400
@@ -44,6 +44,7 @@
 #include "Cell.h"
 #include "builtin-defun-decls.h"
 #include "call-stack.h"
+#include "defaults.h"
 #include "defun.h"
 #include "dirfns.h"
 #include "error.h"
@@ -68,7 +69,6 @@
 #include "utils.h"
 #include "variables.h"
 #include "version.h"
-#include <defaults.h>
 
 // Name of the doc cache file specified on the command line.
 // (--doc-cache-file file)
--- a/libinterp/corefcn/interpreter.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/interpreter.cc	Wed May 03 15:22:21 2017 -0400
@@ -70,7 +70,7 @@
 #include "unwind-prot.h"
 #include "utils.h"
 #include "variables.h"
-#include <version.h>
+#include "version.h"
 
 // TRUE means the quit() call is allowed.
 bool quit_allowed = true;
--- a/libinterp/corefcn/oct-hist.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/oct-hist.cc	Wed May 03 15:22:21 2017 -0400
@@ -50,7 +50,7 @@
 #include "str-vec.h"
 #include "unistd-wrappers.h"
 
-#include <defaults.h>
+#include "defaults.h"
 #include "defun.h"
 #include "error.h"
 #include "errwarn.h"
--- a/libinterp/corefcn/toplev.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/toplev.cc	Wed May 03 15:22:21 2017 -0400
@@ -61,7 +61,7 @@
 #include "sysdep.h"
 #include "unwind-prot.h"
 #include "utils.h"
-#include <version.h>
+#include "version.h"
 
 #if ! defined (SHELL_PATH)
 #  define SHELL_PATH "/bin/sh"
--- a/libinterp/corefcn/utils.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/utils.cc	Wed May 03 15:22:21 2017 -0400
@@ -48,7 +48,7 @@
 #include "vasprintf-wrapper.h"
 
 #include "Cell.h"
-#include <defaults.h>
+#include "defaults.h"
 #include "defun.h"
 #include "dirfns.h"
 #include "error.h"
--- a/libinterp/corefcn/variables.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/corefcn/variables.cc	Wed May 03 15:22:21 2017 -0400
@@ -40,7 +40,7 @@
 #include "str-vec.h"
 
 #include "call-stack.h"
-#include <defaults.h>
+#include "defaults.h"
 #include "Cell.h"
 #include "defun.h"
 #include "dirfns.h"
--- a/libinterp/octave-value/ov-dld-fcn.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/octave-value/ov-dld-fcn.cc	Wed May 03 15:22:21 2017 -0400
@@ -26,7 +26,7 @@
 
 #include "oct-shlib.h"
 
-#include <defaults.h>
+#include "defaults.h"
 #include "dynamic-ld.h"
 #include "error.h"
 #include "ovl.h"
--- a/libinterp/octave-value/ov-mex-fcn.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/octave-value/ov-mex-fcn.cc	Wed May 03 15:22:21 2017 -0400
@@ -27,7 +27,7 @@
 #include "oct-shlib.h"
 
 #include "call-stack.h"
-#include <defaults.h>
+#include "defaults.h"
 #include "dynamic-ld.h"
 #include "error.h"
 #include "errwarn.h"
--- a/libinterp/octave-value/ov-usr-fcn.cc	Wed May 03 09:15:22 2017 -0700
+++ b/libinterp/octave-value/ov-usr-fcn.cc	Wed May 03 15:22:21 2017 -0400
@@ -30,7 +30,7 @@
 
 #include "builtin-defun-decls.h"
 #include "call-stack.h"
-#include <defaults.h>
+#include "defaults.h"
 #include "Cell.h"
 #include "defun.h"
 #include "error.h"