Submitter | phabricator |
---|---|
Date | Feb. 25, 2019, 1:38 a.m. |
Message ID | <1ea853ae7eba189a97d48c17948838b1@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/38920/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -822,3 +822,7 @@ except (ImportError, AttributeError): pass return False + +@check('emacs', 'GNU Emacs') +def has_emacs(): + return matchoutput('emacs --version', b'GNU Emacs')