# HG changeset patch # User Matt Harbison # Date 1430449372 14400 # Node ID be4915009b09c54d322d849bec9b994695a4077f # Parent cba84b06b70237768925851adb1f58e6d0510a23 debuginstall: expand the editor path before searching for it (issue4380) The editor launches without expanding the path with commits because the shell does that for us. If the path isn't an executable, the expanded path is displayed, which is probably more useful than the unexpanded path. For example, in cmd.exe, '~' expands to C:\Users\$user. But it expands to C:/mingw/msys/1.0/home/$user in MinGW. diff -r cba84b06b702 -r be4915009b09 mercurial/commands.py --- a/mercurial/commands.py Fri May 01 22:19:20 2015 +0900 +++ b/mercurial/commands.py Thu Apr 30 23:02:52 2015 -0400 @@ -2370,6 +2370,7 @@ # editor ui.status(_("checking commit editor...\n")) editor = ui.geteditor() + editor = util.expandpath(editor) cmdpath = util.findexe(shlex.split(editor)[0]) if not cmdpath: if editor == 'vi': diff -r cba84b06b702 -r be4915009b09 tests/test-install.t --- a/tests/test-install.t Fri May 01 22:19:20 2015 +0900 +++ b/tests/test-install.t Thu Apr 30 23:02:52 2015 -0400 @@ -24,3 +24,20 @@ (specify a username in your configuration file) 1 problems detected, please check your install! [1] + +path variables are expanded (~ is the same as $TESTTMP) + $ mkdir tools + $ touch tools/testeditor.exe +#if execbit + $ chmod 755 tools/testeditor.exe +#endif + $ hg debuginstall --config ui.editor=~/tools/testeditor.exe + checking encoding (ascii)... + checking Python executable (*) (glob) + checking Python version (*) (glob) + checking Python lib (*lib*)... (glob) + checking installed modules (*mercurial)... (glob) + checking templates (*mercurial?templates)... (glob) + checking commit editor... + checking username... + no problems detected