]> git.eshelyaron.com Git - emacs.git/commitdiff
(generate-file-autoloads): Remove
authorGerd Moellmann <gerd@gnu.org>
Mon, 12 Mar 2001 14:57:30 +0000 (14:57 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 12 Mar 2001 14:57:30 +0000 (14:57 +0000)
warning about line lengths.

lisp/ChangeLog
lisp/emacs-lisp/autoload.el

index 292f9695bbc6b847f04582caa46bcdef80afbcb5..de9a476aac98b53e0eec8ca831bc8ad471ea7236 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-12  Gerd Moellmann  <gerd@gnu.org>
+
+       * emacs-lisp/autoload.el (generate-file-autoloads): Remove
+       warning about line lengths.
+
 2001-03-12  Philippe Waroquiers  <wao@gull.tact.cfmu.eurocontrol.be>
 
        * progmodes/etags.el (tags-compression-info-list): New variable.
        (vc-print-log): Don't switch to the *vc* buffer before the
        command, so that local variable bindings are preserved.
 
-       * vc-{cvs,rcs,sccs}.el: (vc-*-print-log): Output to buffer *vc*,
+       * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
        not the current buffer.
        (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
 
-       * vc-cvs.el: (vc-cvs-checkin): When removing the sticky tag,
+       * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
        make output go to buffer *vc*, not the current buffer.
 
 2001-03-09  Stefan Monnier  <monnier@cs.yale.edu>
index 7be1e71f466f3db86ca7259c26a14040377c5021..8af5da987ac8191033b19d69c940d9035c1a445f 100644 (file)
@@ -1,6 +1,7 @@
 ;;; autoload.el --- maintain autoloads in loaddefs.el.
 
-;; Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
+;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001
+;;   Free Software Foundation, Inc.
 
 ;; Author: Roland McGrath <roland@gnu.org>
 ;; Keywords: maint
@@ -345,17 +346,6 @@ are used."
                    (insert "\n" generate-autoload-section-continuation)))))
          (insert ";;; Generated autoloads from "
                  (autoload-trim-file-name file) "\n")
-         ;; Warn if we put a line in loaddefs.el
-         ;; that is long enough to cause trouble.
-         (while (< (point) output-end)
-           (let ((beg (point)))
-             (end-of-line)
-             (if (> (- (point) beg) 900)
-                 (progn
-                   (message "A line is too long--over 900 characters")
-                   (sleep-for 2)
-                   (goto-char output-end))))
-           (forward-line 1))
          (goto-char output-end)
          (insert generate-autoload-section-trailer)))
     (message "Generating autoloads for %s...done" file)))