summaryrefslogtreecommitdiff
path: root/phpdbg.h
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2013-11-26 11:02:58 +0100
committerBob Weinand <bobwei9@hotmail.com>2013-11-26 11:02:58 +0100
commit6ba73338dd34a2a80e0dd25ca333bfc0b859a930 (patch)
tree5c233ac715d75e6a0fc6e37b5b05abf695e86726 /phpdbg.h
parent9663ef0c1ce6c232d55e145378955a2108dee8b9 (diff)
downloadphp-git-6ba73338dd34a2a80e0dd25ca333bfc0b859a930.tar.gz
Enormous whitespace fix
Diffstat (limited to 'phpdbg.h')
-rw-r--r--phpdbg.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/phpdbg.h b/phpdbg.h
index 7046ec3d00..b045d85fe0 100644
--- a/phpdbg.h
+++ b/phpdbg.h
@@ -106,22 +106,22 @@
#define PHPDBG_IS_COLOURED (1<<12)
#define PHPDBG_IS_CLEANING (1<<13)
-#define PHPDBG_IN_UNTIL (1<<14)
-#define PHPDBG_IN_FINISH (1<<15)
-#define PHPDBG_IN_LEAVE (1<<16)
-#define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL|PHPDBG_IN_FINISH|PHPDBG_IN_LEAVE)
-
-#define PHPDBG_IS_REGISTERED (1<<17)
-#define PHPDBG_IS_STEPONEVAL (1<<18)
-#define PHPDBG_IS_INITIALIZING (1<<19)
+#define PHPDBG_IN_UNTIL (1<<14)
+#define PHPDBG_IN_FINISH (1<<15)
+#define PHPDBG_IN_LEAVE (1<<16)
+#define PHPDBG_SEEK_MASK (PHPDBG_IN_UNTIL|PHPDBG_IN_FINISH|PHPDBG_IN_LEAVE)
+
+#define PHPDBG_IS_REGISTERED (1<<17)
+#define PHPDBG_IS_STEPONEVAL (1<<18)
+#define PHPDBG_IS_INITIALIZING (1<<19)
#define PHPDBG_IS_SIGNALED (1<<20)
-#define PHPDBG_IS_INTERACTIVE (1<<21)
+#define PHPDBG_IS_INTERACTIVE (1<<21)
#define PHPDBG_IS_BP_ENABLED (1<<22)
#ifndef _WIN32
-# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED|PHPDBG_IS_BP_ENABLED)
+# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_COLOURED|PHPDBG_IS_BP_ENABLED)
#else
-# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_BP_ENABLED)
+# define PHPDBG_DEFAULT_FLAGS (PHPDBG_IS_QUIET|PHPDBG_IS_BP_ENABLED)
#endif /* }}} */
/* {{{ strings */
@@ -138,29 +138,29 @@
/* {{{ structs */
ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
- HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */
- HashTable registered; /* registered */
- HashTable seek; /* seek oplines */
- phpdbg_frame_t frame; /* frame */
+ HashTable bp[PHPDBG_BREAK_TABLES]; /* break points */
+ HashTable registered; /* registered */
+ HashTable seek; /* seek oplines */
+ phpdbg_frame_t frame; /* frame */
- char *exec; /* file to execute */
- size_t exec_len; /* size of exec */
- zend_op_array *ops; /* op_array */
- zval *retval; /* return value */
- int bp_count; /* breakpoint count */
- int del_bp_num; /* breakpoint to delete */
- int vmret; /* return from last opcode handler execution */
+ char *exec; /* file to execute */
+ size_t exec_len; /* size of exec */
+ zend_op_array *ops; /* op_array */
+ zval *retval; /* return value */
+ int bp_count; /* breakpoint count */
+ int del_bp_num; /* breakpoint to delete */
+ int vmret; /* return from last opcode handler execution */
- FILE *oplog; /* opline log */
- FILE *io[PHPDBG_IO_FDS]; /* io */
+ FILE *oplog; /* opline log */
+ FILE *io[PHPDBG_IO_FDS]; /* io */
- char *prompt[2]; /* prompt */
- const phpdbg_color_t *colors[PHPDBG_COLORS]; /* colors */
+ char *prompt[2]; /* prompt */
+ const phpdbg_color_t *colors[PHPDBG_COLORS]; /* colors */
- phpdbg_command_t *lcmd; /* last command */
- phpdbg_param_t lparam; /* last param */
+ phpdbg_command_t *lcmd; /* last command */
+ phpdbg_param_t lparam; /* last param */
- zend_ulong flags; /* phpdbg flags */
+ zend_ulong flags; /* phpdbg flags */
ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
#endif /* PHPDBG_H */