aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-09-22 10:16:16 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-09-22 10:16:16 -0700
commite5aa06991e101d3bd86a101d0fe8fb2ed104ef93 (patch)
treeda53fbbd6e3828920f7c8bc79c5ad1e16dbb2f85 /proc.h
parentcb40507b7bc2a88d49af1bdcbbd092f97ae7aa69 (diff)
Remove INTERNAL_BUFFER, which was only used by fish_pager
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/proc.h b/proc.h
index 05013e1d..a3a2cd1c 100644
--- a/proc.h
+++ b/proc.h
@@ -80,12 +80,7 @@ enum process_type_t
/**
The exec builtin
*/
- INTERNAL_EXEC,
- /**
- A buffer
- */
- INTERNAL_BUFFER,
-
+ INTERNAL_EXEC
};
enum
@@ -105,8 +100,7 @@ enum
commands to be evaluated by calling eval. Lastly, this process can
be the result of an exec command. The role of this process_t is
determined by the type field, which can be one of EXTERNAL,
- INTERNAL_BUILTIN, INTERNAL_FUNCTION, INTERNAL_BLOCK, INTERNAL_EXEC,
- and INTERNAL_BUFFER.
+ INTERNAL_BUILTIN, INTERNAL_FUNCTION, INTERNAL_BLOCK, INTERNAL_EXEC.
The process_t contains information on how the process should be
started, such as command name and arguments, as well as runtime
@@ -153,7 +147,7 @@ public:
/**
Type of process. Can be one of \c EXTERNAL, \c
INTERNAL_BUILTIN, \c INTERNAL_FUNCTION, \c INTERNAL_BLOCK,
- INTERNAL_EXEC, or INTERNAL_BUFFER
+ INTERNAL_EXEC
*/
enum process_type_t type;