Dan Nicolaescu
2006-05-08 19:38:37 UTC
env TERM=vt100 emacs -nw
currently gives an error saying the the terminal-init-lk201 function
was not found.
Just change lisp/term/vt100.el:termina-init-vt100 to the following:
(defun terminal-init-vt100 ()
"Terminal initialization function for vt100."
(unless (fboundp 'terminal-init-lk201)
(load "term/lk201" nil t))
(terminal-init-lk201))
I guess nobody is using vt100 anymore otherwise this would have been
reported long time ago...
currently gives an error saying the the terminal-init-lk201 function
was not found.
Just change lisp/term/vt100.el:termina-init-vt100 to the following:
(defun terminal-init-vt100 ()
"Terminal initialization function for vt100."
(unless (fboundp 'terminal-init-lk201)
(load "term/lk201" nil t))
(terminal-init-lk201))
I guess nobody is using vt100 anymore otherwise this would have been
reported long time ago...