On 9/18/19 4:36 AM, Juanma Barranquero wrote: > ELC ../lisp/replace.elc > Can't find D:\Devel\emacs\repo\trunk\src\bootstrap-emacs.exe to refresh > preloaded Lisp files Thanks, I installed the attached to try to fix that. > Loading leim/leim-list.el (source)... > Waiting for git... > Error running git rev-parse: (file-error "Searching for program" > "Permission denied" "git") > Waiting for git... > Error running git rev-parse --abbrev-ref: (file-error "Searching for > program" "Permission denied" "git") Is there a 'git' program in your PATH? What's the output of the following shell script (or equivalent) on your host? IFS=':' for dir in $PATH; do ls -ld "$dir" "$dir/git" echo ============= done