Function: xterm--post-command-hook
xterm--post-command-hook is a byte-compiled function defined in
xterm.el.gz.
Signature
(xterm--post-command-hook)
Documentation
Hook for xterm features that need to be frequently updated.
Source Code
;; Defined in /usr/src/emacs/lisp/term/xterm.el.gz
(defun xterm--post-command-hook ()
"Hook for xterm features that need to be frequently updated."
(unless (display-graphic-p)
(when xterm-set-window-title
(xterm-set-window-title))
(when (memq xterm-update-cursor '(t type))
(xterm--update-cursor-type))
(when (memq xterm-update-cursor '(t color))
(xterm--update-cursor-color))))