diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/terminal.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/terminal.el')
-rw-r--r-- | lisp/terminal.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/terminal.el b/lisp/terminal.el index d888a653c93..0bde04eb2ec 100644 --- a/lisp/terminal.el +++ b/lisp/terminal.el @@ -1005,7 +1005,7 @@ move to start of new line, clear to end of line." (unwind-protect (progn (set-process-filter te-process - (function (lambda (p s) + (function (lambda (_p s) (or (eq (length s) 1) (setq te-pending-output (list 1 s))) (throw 'char (aref s 0))))) @@ -1327,7 +1327,7 @@ in the directory specified by `te-terminfo-directory'." "im=:ei=:dm=:ed=:mi:do=^p^j:nl=^p^j:bs:") ) -(defun te-tic-sentinel (proc state-change) +(defun te-tic-sentinel (_proc state-change) "If tic has finished, delete the .tif file" (if (equal state-change "finished ") |