aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-11-11 20:54:00 +1000
committerGravatar axel <axel@liljencrantz.se>2006-11-11 20:54:00 +1000
commit6616543991135e032c06a912dccf8c85e9d04953 (patch)
tree5f560c53f0869b4d91102221ac64f9579d8a415a /parser.c
parent83a3706099bd6c5b7c9840e5049b012f5e8bcc5d (diff)
Add breakpoint builtin
darcs-hash:20061111105400-ac50b-18b9165f8719efd45b46e3b3786f7079edd721e7.gz
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/parser.c b/parser.c
index 9707bab8..2b887f81 100644
--- a/parser.c
+++ b/parser.c
@@ -188,6 +188,12 @@ The fish parser. Contains functions for parsing and evaluating code.
*/
#define FOR_BLOCK N_( L"'for' block" )
+/**
+ Breakpoint block
+*/
+#define BREAKPOINT_BLOCK N_( L"Block created by breakpoint" )
+
+
/**
If block description
@@ -331,7 +337,11 @@ const static struct block_lookup_entry block_lookup[]=
}
,
{
- 0,0,0
+ BREAKPOINT, L"breakpoint", BREAKPOINT_BLOCK
+ }
+ ,
+ {
+ 0, 0, 0
}
}
;