diff lisp/prim/update-elc.el @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents c7528f8e288d
children 0132846995bd
line wrap: on
line diff
--- a/lisp/prim/update-elc.el	Mon Aug 13 09:38:27 2007 +0200
+++ b/lisp/prim/update-elc.el	Mon Aug 13 09:39:39 2007 +0200
@@ -1,3 +1,11 @@
+;;; update-elc.el --- Bytecompile out-of-date dumped files
+
+;; Copyright (C) 1997 Free Software Foundation, Inc.
+;; Copyright (C) 1996 Unknown
+
+;; Maintainer: XEmacs Development Team
+;; Keywords: internal
+
 ;; This file is part of XEmacs.
 
 ;; XEmacs is free software; you can redistribute it and/or modify it
@@ -17,6 +25,8 @@
 
 ;;; Synched up with: Not in FSF.
 
+;;; Commentary:
+
 ;; Byte compile the .EL files necessary to dump out xemacs.
 ;; Use this file like this:
 ;;
@@ -29,6 +39,11 @@
 ;; (the idea here is that you can bootstrap if your .ELC files
 ;; are missing or badly out-of-date)
 
+;; Currently this code gets the list of files to check passed to it from
+;; src/Makefile.  This must be fixed.  -slb
+
+;;; Code:
+
 (setq update-elc-files-to-compile
       (delq nil
 	    (mapcar (function
@@ -56,3 +71,5 @@
       (load "loadup-el.el")))
 
 (kill-emacs)
+
+;;; update-elc.el ends here