diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 1993-03-17 17:17:05 +0000 |
commit | 76550a57f934a39f067da196e94b10797efca240 (patch) | |
tree | 91d58a3fc4388cc3bf00987c0cca050b6bd20baf /lisp/rlogin.el | |
parent | aae56ea7ca8c74e7bb5595b828851aaa9f947792 (diff) | |
download | emacs-76550a57f934a39f067da196e94b10797efca240.tar.gz |
Add standard library headers.
Diffstat (limited to 'lisp/rlogin.el')
-rw-r--r-- | lisp/rlogin.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/rlogin.el b/lisp/rlogin.el index 1059dec7836..1f4e8024d25 100644 --- a/lisp/rlogin.el +++ b/lisp/rlogin.el @@ -1,5 +1,8 @@ -;;; rlogin.el -- emacs interface using comint routines from CMU -;;; +;;; rlogin.el --- remote login interface + +;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> +;; Keywords: unix + ;;; Copyright (C) 1992 Free Software Foundation, Inc. ;;; ;;; This program is free software; you can redistribute it and/or modify @@ -20,10 +23,11 @@ ;;; 675 Massachusetts Avenue. ;;; Cambridge, MA 02139, USA. ;;; -;;; Please send bug reports, etc. to friedman@prep.ai.mit.edu ;;; Todo: add directory tracking using ange-ftp style patchnames for the cwd. +;;; Code: + (require 'comint) (defvar rlogin-program "rlogin" @@ -108,4 +112,5 @@ buffer." (send-string nil "\C-d") (delete-char arg))) -;; eof +;;; rlogin.el ends here + |