Permalink
Browse files

Stub for set -h / hashall.

Addresses issue #58 (Aboriginal.)
  • Loading branch information...
Andy Chu
Andy Chu committed Jan 9, 2018
1 parent 4d332f7 commit 0d880c3dd139caa5c2e854d01fbc8484404ec672
Showing with 5 additions and 0 deletions.
  1. +5 −0 core/state.py
View
@@ -73,6 +73,7 @@ def Set(self, b):
('x', 'xtrace'),
('f', 'noglob'),
('C', 'noclobber'),
('h', 'hashall'),
(None, 'pipefail'),
(None, 'debug-completion'),
@@ -100,6 +101,10 @@ def __init__(self, mem):
self.noglob = False # -f
self.noexec = False # -n
self.noclobber = False # -C
# We don't do anything with this yet. But Aboriginal calls 'set +h'.
self.hashall = True # -h is true by default.
self.debug_completion = False
self.strict_control_flow = False

0 comments on commit 0d880c3

Please sign in to comment.