summary refs log tree commit diff
path: root/src/eval.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/eval.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/eval.h b/src/eval.h
index dc523e2..3d0a9a6 100644
--- a/src/eval.h
+++ b/src/eval.h
@@ -62,8 +62,8 @@ extern int funcnest;
 extern int evalskip;
 
 /* reasons for skipping commands (see comment on breakcmd routine) */
-#define SKIPBREAK	1
-#define SKIPCONT	2
-#define SKIPFUNC	3
-#define SKIPFILE	4
-#define SKIPEVAL	5
+#define SKIPBREAK	(1 << 0)
+#define SKIPCONT	(1 << 1)
+#define SKIPFUNC	(1 << 2)
+#define SKIPFILE	(1 << 3)
+#define SKIPEVAL	(1 << 4)
'/pounce/commit/server.c?h=2.4&id=9fcd81df89c2736e405f4dbb9bf97fe904818c7f&follow=1'>Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe