]> code.delx.au - gnu-emacs/blobdiff - lisp/cedet/ede/system.el
Update copyright year to 2016
[gnu-emacs] / lisp / cedet / ede / system.el
index e3699b19c246c871056a2cc7a8301e5ca4db251b..3aa91b635953054977ed06db43b12ba43f4856e2 100644 (file)
@@ -1,6 +1,6 @@
 ;;; ede-system.el --- EDE working with the system (VC, FTP, ETC)
 
-;;; Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+;; Copyright (C) 2001-2003, 2009-2016 Free Software Foundation, Inc.
 
 ;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: project, make, vc
@@ -31,7 +31,8 @@
 ;;; Code:
 
 ;;; Web/FTP site node.
-;;
+
+;;;###autoload
 (defun ede-web-browse-home ()
   "Browse the home page of the current project."
   (interactive)
@@ -44,7 +45,7 @@
     (browse-url home)
     ))
 
-
+;;;###autoload
 (defun ede-edit-web-page ()
   "Edit the web site for this project."
   (interactive)
@@ -62,7 +63,7 @@
          (error "No project file found")))
     (find-file endfile)))
 
-
+;;;###autoload
 (defun ede-upload-distribution ()
   "Upload the current distribution to the correct location.
 Use /user@ftp.site.com: file names for FTP sites.
@@ -95,6 +96,7 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
   (message "Done uploading files...")
   )
 
+;;;###autoload
 (defun ede-upload-html-documentation ()
   "Upload the current distributions documentation as HTML.
 Use /user@ftp.site.com: file names for FTP sites.
@@ -126,6 +128,8 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
 ;;; Version Control
 ;;
 ;; Do a few nice things with Version control systems.
+
+;;;###autoload
 (defun ede-vc-project-directory ()
   "Run `vc-dir' on the current project."
   (interactive)
@@ -134,4 +138,9 @@ Download tramp, and use /r:machine: for names on remote sites w/out FTP access."
 
 (provide 'ede/system)
 
+;; Local variables:
+;; generated-autoload-file: "loaddefs.el"
+;; generated-autoload-load-name: "ede/system"
+;; End:
+
 ;;; ede/system.el ends here