Mercurial > hg > xemacs-beta
view lisp/efs/efs-auto.el @ 42:8b8b7f3559a2 r19-15b104
Import from CVS: tag r19-15b104
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:54:51 +0200 |
parents | 7e54bd776075 |
children | 56c54cf7c5b6 |
line wrap: on
line source
;; -*-Emacs-Lisp-*- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; File: efs-auto.el ;; Release: $efs release: 1.15 $ ;; Version: #Revision: 1.7 $ ;; RCS: ;; Description: Simple way of autoloading efs ;; Author: Andy Norman, Dawn ;; Created: Thu Sep 24 09:50:08 1992 ;; Modified: Sun Nov 27 11:45:28 1994 by sandy on gandalf ;; Language: Emacs-Lisp ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; This file is part of efs. See efs.el for copyright ;;; (it's copylefted) and warrranty (there isn't one) information. ;;; Provides a way of autoloading efs. To use this, just put ;;; (require 'efs-auto) in your .emacs file. ;;; ;;; The Bad News: ;;; ;;; 1. Calls to load and require will not trigger efs to autoload. ;;; If you are want to put remote directories in your load path, ;;; you should require efs. ;;; 2. Because efs does not overload expand-file-name until it is loaded, ;;; "smart" expansion of file names on remote apollos running domain ;;; will not work yet. This means that accessing a file on a remote ;;; apollo may not correctly cause efs to autoload. This will depend ;;; the details of your command sequence. (provide 'efs-auto) (require 'efs-ovwrt) (require 'efs-fnh) (defconst efs-auto-version (concat (substring "$efs release: 1.15 $" 14 -2) "/" (substring "#Revision: 1.7 $" 11 -2))) ;;; Interactive functions that should be accessible from here. (autoload 'efs-report-bug "efs-report" "Submit a bug report for efs." t) (autoload 'efs-set-passwd "efs-netrc" "For a given HOST and USER, set or change the associated PASSWORD." t) (autoload 'efs-nslookup-host "efs" "Attempt to resolve a hostname using nslookup if possible." t) ;;; end of efs-auto.el