Eu tenho as seguintes duas linhas de código no meu arquivo init.el:
(setq shell-file-name "bash")
(setq shell-command-switch "-ic")
Tentei executar o script a seguir para obter uma lista de executáveis usando o script de shell dmenu_path.
(defun dmenu-path-out ()
(shell-command-to-string "dmenu_path"))
Eu vejo o seguinte erro:
bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell
[
0ad
...
Como impedir que o bash retorne esse erro ao usar shell-command
?