comparison lisp/comint.el @ 72833:81a55a7dc3c3

* etc/NEWS: In terminal-oriented subshells, the EMACS environment variable now defaults to Emacs's absolute file name, instead of to "t". * etc/PROBLEMS: Adjust tcsh advice for this. * make-dist (EMACS): Exit and fail if the EMACS environment variable is set to something other than an absolute file name. * lisp/comint.el (comint-exec-1): Set EMACS to the full name of Emacs, not to "t". * lisp/progmodes/compile.el (compilation-start): Likewise. * lisp/progmodes/idlwave.el (idlwave-rescan-asynchronously): Don't use expand-file-name on invocation-directory, since this might mishandle special characters in invocation-directory. * man/faq.texi (Escape sequences in shell output): EMACS is now set to Emacs's absolute file name, not to "t". (^M in the shell buffer): Likewise. * man/misc.texi (Interactive Shell): Likewise.
author Paul Eggert <eggert@twinsun.com>
date Tue, 12 Sep 2006 16:43:25 +0000
parents f912b6f4d358
children 7efd5d5388ea a1a25ac6c88a
comparison
equal deleted inserted replaced
72832:edab538d7c7a 72833:81a55a7dc3c3
763 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo) 763 (if (and (boundp 'system-uses-terminfo) system-uses-terminfo)
764 (list "TERM=dumb" "TERMCAP=" 764 (list "TERM=dumb" "TERMCAP="
765 (format "COLUMNS=%d" (window-width))) 765 (format "COLUMNS=%d" (window-width)))
766 (list "TERM=emacs" 766 (list "TERM=emacs"
767 (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width)))) 767 (format "TERMCAP=emacs:co#%d:tc=unknown:" (window-width))))
768 (if (getenv "EMACS") nil (list "EMACS=t")) 768 (unless (getenv "EMACS")
769 (list (concat "EMACS=" invocation-directory invocation-name)))
769 process-environment)) 770 process-environment))
770 (default-directory 771 (default-directory
771 (if (file-accessible-directory-p default-directory) 772 (if (file-accessible-directory-p default-directory)
772 default-directory 773 default-directory
773 "/")) 774 "/"))