Variable: tramp-echo-mark
tramp-echo-mark is a variable defined in tramp.el.gz.
Value
"_echo"
Documentation
String mark to be transmitted around shell commands.
Used to separate their echo from the output they produce. This
will only be used if we cannot disable remote echo via stty.
This string must have no effect on the remote shell except for
producing some echo which can later be detected by
tramp-echoed-echo-mark-regexp. Using tramp-echo-mark-marker,
followed by an equal number of backspaces to erase them will
usually suffice.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defconst tramp-echo-mark
(concat tramp-echo-mark-marker
(make-string tramp-echo-mark-marker-length ?\b))
"String mark to be transmitted around shell commands.
Used to separate their echo from the output they produce. This
will only be used if we cannot disable remote echo via stty.
This string must have no effect on the remote shell except for
producing some echo which can later be detected by
`tramp-echoed-echo-mark-regexp'. Using `tramp-echo-mark-marker',
followed by an equal number of backspaces to erase them will
usually suffice.")