summaryrefslogtreecommitdiff
path: root/lisp/terminal.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-05-18 10:18:42 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-05-18 10:18:42 +0000
commitff660307553247f16a8badc658dee8061f5f89bd (patch)
tree5f9587a7733cbff8c9ef463da87c3bfefefd0dde /lisp/terminal.el
parent887195ac8398ff3569c5fc45c4566f3c6bce2e3a (diff)
downloademacs-ff660307553247f16a8badc658dee8061f5f89bd.tar.gz
Replace `send-string' by `process-send-string'.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r--lisp/terminal.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el
index d33ba914cd3..b84b1b6ed00 100644
--- a/lisp/terminal.el
+++ b/lisp/terminal.el
@@ -489,7 +489,7 @@ lets you type a terminal emulator command."
(progn
(and terminal-more-processing (null (cdr te-pending-output))
(te-set-more-count nil))
- (send-string te-process (make-string 1 last-input-char))
+ (process-send-string te-process (make-string 1 last-input-char))
(te-process-output t))
(message "Function key `%s' ignored"
(single-key-description last-input-char))))))