Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion init/lisp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Return value is t on success, nil otherwise."
(if (> (buffer-size) 0)
(progn
;; replace cmd-buffer w/ contents of file whose name is in cmd-buffer
(insert-file-contents (buffer-substring (point-min) (1- (point-max))) nil nil nil t)
;; (insert-file-contents (buffer-substring (point-min) (1- (point-max))) nil nil nil t)
;; and run it carefully. If an error is thrown, catch it and
;; propagate the fact upwards as a nil, but be sure to still
;; execute cleanup below
Expand Down
4 changes: 2 additions & 2 deletions shells/Lisp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ function Lisp.expandVar(self, k, v, vType)
v = tostring(v):multiEscaped()
lineA[#lineA + 1] = "(setenv \""
lineA[#lineA + 1] = k
lineA[#lineA + 1] = "\" "
lineA[#lineA + 1] = "\" \""
lineA[#lineA + 1] = v
lineA[#lineA + 1] = ")\n"
lineA[#lineA + 1] = "\")\n"
local line = concatTbl(lineA,"")
stdout:write(line)
if (k:find('^_ModuleTable') == nil) then
Expand Down
Loading