aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-11-15 00:06:26 +0000
committerRichard M. Stallman1994-11-15 00:06:26 +0000
commit9dbfa8cfbbbd857bf388582b5d5c66f9f9d0331d (patch)
tree273da231c4de071efd9e92c37be7975fb208c1b3
parentad7c5ee1f94d540bbcff071e3178ef75d3ea7887 (diff)
downloademacs-9dbfa8cfbbbd857bf388582b5d5c66f9f9d0331d.tar.gz
emacs-9dbfa8cfbbbd857bf388582b5d5c66f9f9d0331d.zip
(comint-exec-1): Terminate TERMCAP with colon.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index ff8c07960df..a3666ec92d2 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -579,7 +579,7 @@ buffer. The hook `comint-exec-hook' is run after each exec."
579 (list "EMACS=t" "TERM=unknown" 579 (list "EMACS=t" "TERM=unknown"
580 (format "COLUMNS=%d" (frame-width))) 580 (format "COLUMNS=%d" (frame-width)))
581 (list "EMACS=t" "TERM=emacs" 581 (list "EMACS=t" "TERM=emacs"
582 (format "TERMCAP=emacs:co#%d:tc=unknown" (frame-width)))) 582 (format "TERMCAP=emacs:co#%d:tc=unknown:" (frame-width))))
583 process-environment)) 583 process-environment))
584 (default-directory 584 (default-directory
585 (if (file-directory-p default-directory) 585 (if (file-directory-p default-directory)