diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-03-12 14:57:30 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-03-12 14:57:30 +0000 |
commit | 789b6186a36d2ed6b469f7fbf59a46b5d25f87ed (patch) | |
tree | 095513641537c2c3f2b458415fb33c6f9b618b50 /lisp/emacs-lisp | |
parent | 5141f9d0fb812fa1be0d161d92d194304ddd2e65 (diff) | |
download | emacs-789b6186a36d2ed6b469f7fbf59a46b5d25f87ed.tar.gz emacs-789b6186a36d2ed6b469f7fbf59a46b5d25f87ed.tar.bz2 emacs-789b6186a36d2ed6b469f7fbf59a46b5d25f87ed.zip |
(generate-file-autoloads): Remove
warning about line lengths.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 7be1e71f466..8af5da987ac 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -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))) |