Variable: telnet-mode-abbrev-table
telnet-mode-abbrev-table is a variable defined in telnet.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for telnet-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/net/telnet.el.gz
(define-derived-mode telnet-mode comint-mode "Telnet"
"This mode is for using telnet from a buffer to another host.
It has most of the same commands as `comint-mode'.
There is a variable `telnet-interrupt-string' which is the character
sent to try to stop execution of a job on the remote host.
Data is sent to the remote host when RET is typed."
(setq-local revert-buffer-function 'telnet-revert-buffer)
(setq-local window-point-insertion-type t)
(setq-local comint-prompt-regexp telnet-prompt-pattern)
(setq-local comint-use-prompt-regexp t))