Function: shell-snarf-envar
shell-snarf-envar is a byte-compiled function defined in shell.el.gz.
Signature
(shell-snarf-envar VAR)
Documentation
Return as a string the shell's value of environment variable VAR.
Source Code
;; Defined in /usr/src/emacs/lisp/shell.el.gz
;; This was mostly copied from shell-resync-dirs.
(defun shell-snarf-envar (var)
"Return as a string the shell's value of environment variable VAR."
(let* ((cmd (format "printenv '%s'\n" var))
(proc (get-buffer-process (current-buffer)))
(pmark (process-mark proc)))
(goto-char pmark)
(insert cmd)
(sit-for 0) ; force redisplay
(comint-send-string proc cmd)
(set-marker pmark (point))
(let ((pt (point))) ; wait for 1 line
;; This extra newline prevents the user's pending input from spoofing us.
(insert "\n") (backward-char 1)
(while (not (looking-at ".+\n"))
(accept-process-output proc)
(goto-char pt)))
(goto-char pmark) (delete-char 1) ; remove the extra newline
(buffer-substring (match-beginning 0) (1- (match-end 0)))))