Revert "lisp/ob-shell.el: Initialize explicit-shell-file-name"

This reverts commit 37cd00bb12.

Commit 37cd00bb accidentally added check.sh, nohup.out, and setup.sh.
This commit is contained in:
Matthew Trzcinski 2024-03-23 08:54:51 +01:00
parent 13af0fd543
commit 34c844ab33
4 changed files with 1 additions and 45 deletions

View File

@ -1,6 +0,0 @@
#!/usr/bin/env bash
set -Eeuo pipefail
make autoloads
emacs -q --eval="(add-to-list 'load-path \"/home/ahab/Projects/org-mode/lisp\")"

View File

@ -81,8 +81,7 @@ is modified outside the Customize interface."
(lambda (body params)
(:documentation
(format "Execute a block of %s commands with Babel." name))
(let ((explicit-shell-file-name name)
(shell-file-name name))
(let ((shell-file-name name))
(org-babel-execute:shell body params))))
(put fname 'definition-name 'org-babel-shell-initialize))
(defalias (intern (concat "org-babel-variable-assignments:" name))

View File

@ -1,21 +0,0 @@
/home/ahab/.guix-profile/bin/emacsclient: can't find socket; have you started the server?
/home/ahab/.guix-profile/bin/emacsclient: To start the server in Emacs, type "M-x server-start".
/home/ahab/.guix-profile/bin/emacsclient: No socket or alternate editor. Please use:
--socket-name
--server-file (or environment variable EMACS_SERVER_FILE)
--alternate-editor (or environment variable ALTERNATE_EDITOR)
/home/ahab/.guix-profile/bin/emacsclient: can't find socket; have you started the server?
/home/ahab/.guix-profile/bin/emacsclient: To start the server in Emacs, type "M-x server-start".
/home/ahab/.guix-profile/bin/emacsclient: No socket or alternate editor. Please use:
--socket-name
--server-file (or environment variable EMACS_SERVER_FILE)
--alternate-editor (or environment variable ALTERNATE_EDITOR)
/home/ahab/.guix-profile/bin/emacsclient: can't find socket; have you started the server?
/home/ahab/.guix-profile/bin/emacsclient: To start the server in Emacs, type "M-x server-start".
/home/ahab/.guix-profile/bin/emacsclient: No socket or alternate editor. Please use:
--socket-name
--server-file (or environment variable EMACS_SERVER_FILE)
--alternate-editor (or environment variable ALTERNATE_EDITOR)

View File

@ -1,16 +0,0 @@
#!/usr/bin/env bash
set -Eeuo pipefail
echo "[DEV] Setting up ssh..."
eval "$(ssh-agent)"
ssh-add /home/ahab/.ssh/id_org
echo "[DEV] SSH setup complete"
echo "[DEV] Rebuilding..."
make
echo "[DEV] Rebuilt"
echo "[DEV] Restarting emacsd..."
herd restart emacsd
echo "[DEV] emacsd restarted"