Skip to content

Commit

Permalink
refactor(cli): remove superfluous emacs switches
Browse files Browse the repository at this point in the history
Neither --no-x-resources or --no-splash are relevant to a noninteractive
session.
  • Loading branch information
hlissner committed Sep 7, 2022
1 parent a0fc7ba commit 0172b18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/doom
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh
:; # -*- mode: emacs-lisp; lexical-binding: t -*-
:; case "$EMACS" in *term*) EMACS=emacs ;; *) EMACS="${EMACS:-emacs}" ;; esac
:; emacs="$EMACS -q --no-site-file --no-x-resources --no-splash --batch"
:; emacs="$EMACS -q --no-site-file --batch"
:; tmpdir=`$emacs --eval '(princ (temporary-file-directory))' 2>/dev/null`
:; [ -z "$tmpdir" ] && { >&2 echo "Error: failed to run Emacs with command '$EMACS'"; >&2 echo; >&2 echo "Are you sure Emacs is installed and in your \$PATH?"; exit 1; }
:; export __DOOMPID="${__DOOMPID:-$$}"
Expand Down
2 changes: 1 addition & 1 deletion bin/doomscript
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ esac
# directory from `load-path', which would prevent Doom from manually loading the
# site files later. These are important on some systems or deployment methods
# (like Snap or NixOS).
emacs="$EMACS -q --no-site-file --no-x-resources --no-splash --batch"
emacs="$EMACS -q --no-site-file --batch"

# $TMPDIR (or $TEMP and $TMP on Windows) aren't guaranteed to have values, and
# mktemp isn't available on all systems, but you know what is? Emacs! So I rely
Expand Down

0 comments on commit 0172b18

Please sign in to comment.