aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-08-19 17:50:02 +0000
committerDave Love1999-08-19 17:50:02 +0000
commit720712eb90e294312bda1003611386555b5833ec (patch)
tree2a07da3e50d46fdfc47e8f7ccc05c627884f1a2b
parent55df774a8a930e3ab60ee8ad7ebbf910b1d6d1ad (diff)
downloademacs-720712eb90e294312bda1003611386555b5833ec.tar.gz
emacs-720712eb90e294312bda1003611386555b5833ec.zip
Avoid ange-ftp related compilation warnings.
-rw-r--r--lisp/term.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/term.el b/lisp/term.el
index 6d45f1f1c42..d76db38ee4e 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -4,7 +4,7 @@
4 4
5;;; Author: Per Bothner <bothner@cygnus.com> 5;;; Author: Per Bothner <bothner@cygnus.com>
6;;; Based on comint mode written by: Olin Shivers <shivers@cs.cmu.edu> 6;;; Based on comint mode written by: Olin Shivers <shivers@cs.cmu.edu>
7;;; Keyword: processes 7;;; Keywords: processes
8 8
9;; This file is part of GNU Emacs. 9;; This file is part of GNU Emacs.
10 10
@@ -393,6 +393,8 @@
393;; so it is important to increase it if there are protocol-relevant changes. 393;; so it is important to increase it if there are protocol-relevant changes.
394(defconst term-protocol-version "0.95") 394(defconst term-protocol-version "0.95")
395 395
396(eval-when-compile
397 (require 'ange-ftp))
396(require 'ring) 398(require 'ring)
397(require 'ehelp) 399(require 'ehelp)
398 400