summaryrefslogtreecommitdiff
path: root/sapi/phpdbg
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-10-14 12:56:38 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-10-14 12:56:38 +0200
commit1ad08256f349fa513157437abc4feb245cce03fc (patch)
treea6bd8d17fa64b625757ac04b1436696c3e760f61 /sapi/phpdbg
parentf87f7bb8c7be413afd02548435112fa2c5030a4a (diff)
downloadphp-git-1ad08256f349fa513157437abc4feb245cce03fc.tar.gz
Sync leading and final newlines in source code files
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r--sapi/phpdbg/Makefile.frag1
-rw-r--r--sapi/phpdbg/config.w321
-rw-r--r--sapi/phpdbg/phpdbg_eol.h1
-rw-r--r--sapi/phpdbg/phpdbg_io.c1
-rw-r--r--sapi/phpdbg/phpdbg_io.h1
-rw-r--r--sapi/phpdbg/phpdbg_sigio_win32.c1
-rw-r--r--sapi/phpdbg/phpdbg_sigsafe.c1
7 files changed, 0 insertions, 7 deletions
diff --git a/sapi/phpdbg/Makefile.frag b/sapi/phpdbg/Makefile.frag
index 091b1e831c..65377e608a 100644
--- a/sapi/phpdbg/Makefile.frag
+++ b/sapi/phpdbg/Makefile.frag
@@ -39,4 +39,3 @@ test-phpdbg:
@$(top_builddir)/sapi/cli/php sapi/phpdbg/tests/run-tests.php --phpdbg sapi/phpdbg/phpdbg
.PHONY: clean-phpdbg test-phpdbg
-
diff --git a/sapi/phpdbg/config.w32 b/sapi/phpdbg/config.w32
index e69ca455f7..9aca03dff6 100644
--- a/sapi/phpdbg/config.w32
+++ b/sapi/phpdbg/config.w32
@@ -31,4 +31,3 @@ if (PHP_PHPDBGS == "yes") {
ADD_FLAG("LIBS_PHPDBGS", "ws2_32.lib user32.lib");
ADD_FLAG("CFLAGS_PHPDBGS", "/D YY_NO_UNISTD_H");
}
-
diff --git a/sapi/phpdbg/phpdbg_eol.h b/sapi/phpdbg/phpdbg_eol.h
index afc31a906e..8d6ee8278e 100644
--- a/sapi/phpdbg/phpdbg_eol.h
+++ b/sapi/phpdbg/phpdbg_eol.h
@@ -43,4 +43,3 @@ char *phpdbg_eol_rep(int id);
void phpdbg_eol_convert(char **str, int *len);
#endif /* PHPDBG_EOL_H */
-
diff --git a/sapi/phpdbg/phpdbg_io.c b/sapi/phpdbg/phpdbg_io.c
index 150647aa7e..1f26f7983b 100644
--- a/sapi/phpdbg/phpdbg_io.c
+++ b/sapi/phpdbg/phpdbg_io.c
@@ -353,4 +353,3 @@ PHPDBG_API void phpdbg_close_socket(int sock) {
#endif
}
}
-
diff --git a/sapi/phpdbg/phpdbg_io.h b/sapi/phpdbg/phpdbg_io.h
index d0b69d9b41..deda272da2 100644
--- a/sapi/phpdbg/phpdbg_io.h
+++ b/sapi/phpdbg/phpdbg_io.h
@@ -38,4 +38,3 @@ PHPDBG_API int phpdbg_open_socket(const char *interface, unsigned short port);
PHPDBG_API void phpdbg_close_socket(int sock);
#endif /* PHPDBG_IO_H */
-
diff --git a/sapi/phpdbg/phpdbg_sigio_win32.c b/sapi/phpdbg/phpdbg_sigio_win32.c
index b86ea05da2..3ca0ad8d37 100644
--- a/sapi/phpdbg/phpdbg_sigio_win32.c
+++ b/sapi/phpdbg/phpdbg_sigio_win32.c
@@ -109,4 +109,3 @@ sigio_watcher_stop(void)
PHPDBG_G(swd).fd = -1;
PHPDBG_G(sigio_watcher_thread) = INVALID_HANDLE_VALUE;
}
-
diff --git a/sapi/phpdbg/phpdbg_sigsafe.c b/sapi/phpdbg/phpdbg_sigsafe.c
index 081d864c5c..dab0d27d85 100644
--- a/sapi/phpdbg/phpdbg_sigsafe.c
+++ b/sapi/phpdbg/phpdbg_sigsafe.c
@@ -56,4 +56,3 @@ void phpdbg_clear_sigsafe_mem(void) {
zend_bool phpdbg_active_sigsafe_mem(void) {
return !!PHPDBG_G(sigsafe_mem).mem;
}
-