aboutsummaryrefslogtreecommitdiffhomepage
path: root/expand.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-10-15 12:42:55 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-10-15 12:43:06 -0700
commit049bd227edb5fd65a77168de7769424b8ba44ed4 (patch)
tree36bc013486d42781e901e6e4ff23598805077007 /expand.h
parentff7108877be5d6ace18ff91a75bd3c73ac02d09c (diff)
Remove EXPAND_SKIP_PROCESS, which did not actually work
Diffstat (limited to 'expand.h')
-rw-r--r--expand.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/expand.h b/expand.h
index 14a4f477..9f00378e 100644
--- a/expand.h
+++ b/expand.h
@@ -50,17 +50,14 @@ enum
/** Don't generate descriptions */
EXPAND_NO_DESCRIPTIONS = 1 << 6,
- /** Don't do process expansion */
- EXPAND_SKIP_PROCESS = 1 << 7,
-
/** Don't expand jobs (but you can still expand processes). This is because job expansion is not thread safe. */
- EXPAND_SKIP_JOBS = 1 << 8,
+ EXPAND_SKIP_JOBS = 1 << 7,
/** Don't expand home directories */
- EXPAND_SKIP_HOME_DIRECTORIES = 1 << 9,
+ EXPAND_SKIP_HOME_DIRECTORIES = 1 << 8,
/** Allow fuzzy matching */
- EXPAND_FUZZY_MATCH = 1 << 10
+ EXPAND_FUZZY_MATCH = 1 << 9
};
typedef int expand_flags_t;