Fix #3831: integer expression expected error on bin/doom
Also mentioned in #3746
This commit is contained in:
parent
ce2cabf07e
commit
239516a7db
1 changed files with 1 additions and 1 deletions
2
bin/doom
2
bin/doom
|
@ -4,7 +4,7 @@
|
||||||
:; export __DOOMPOST="${TMPDIR:-/tmp}/doom.sh"
|
:; export __DOOMPOST="${TMPDIR:-/tmp}/doom.sh"
|
||||||
:; $EMACS --version >/dev/null 2>&1 || { >&2 echo "Can't find emacs in your PATH"; exit 1; }
|
:; $EMACS --version >/dev/null 2>&1 || { >&2 echo "Can't find emacs in your PATH"; exit 1; }
|
||||||
:; $EMACS --no-site-file --script "$0" -- "$@" || __DOOMCODE=$?
|
:; $EMACS --no-site-file --script "$0" -- "$@" || __DOOMCODE=$?
|
||||||
:; [ "$__DOOMCODE" -eq 128 ] && { "$__DOOMPOST" "$0" "$@"; __DOOMCODE=$?; }
|
:; [ "${__DOOMCODE:-0}" -eq 128 ] && exec "$__DOOMPOST" "$0" "$@"
|
||||||
:; exit $__DOOMCODE
|
:; exit $__DOOMCODE
|
||||||
|
|
||||||
;; The garbage collector isn't important during CLI ops. A higher threshold
|
;; The garbage collector isn't important during CLI ops. A higher threshold
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue