Mercurial > emacs
changeset 55208:12f4731fd3aa
(autoload-before-p): Remove.
(update-file-autoloads, update-directory-autoloads): Use `time-less-p'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 27 Apr 2004 22:45:59 +0000 |
parents | a3244da8e396 |
children | a2fdb97fe128 |
files | lisp/emacs-lisp/autoload.el |
diffstat | 1 files changed, 3 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/autoload.el Tue Apr 27 22:44:39 2004 +0000 +++ b/lisp/emacs-lisp/autoload.el Tue Apr 27 22:45:59 2004 +0000 @@ -1,6 +1,6 @@ ;; autoload.el --- maintain autoloads in loaddefs.el -;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001, 2003 +;; Copyright (C) 1991,92,93,94,95,96,97, 2001,02,03,04 ;; Free Software Foundation, Inc. ;; Author: Roland McGrath <roland@gnu.org> @@ -407,7 +407,7 @@ (if (and (or (null existing-buffer) (not (buffer-modified-p existing-buffer))) (listp last-time) (= (length last-time) 2) - (not (autoload-before-p last-time file-time))) + (not (time-less-p last-time file-time))) (progn (if (interactive-p) (message "\ @@ -468,11 +468,6 @@ (if no-autoloads file)))) -(defun autoload-before-p (time1 time2) - (or (< (car time1) (car time2)) - (and (= (car time1) (car time2)) - (< (nth 1 time1) (nth 1 time2))))) - (defun autoload-remove-section (begin) (goto-char begin) (search-forward generate-autoload-section-trailer) @@ -527,8 +522,7 @@ (dolist (file file) (let ((file-time (nth 5 (file-attributes file)))) (when (and file-time - (not (autoload-before-p last-time - file-time))) + (not (time-less-p last-time file-time))) ;; file unchanged (push file no-autoloads) (setq files (delete file files)))))))