aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-12 14:57:30 +0000
committerGerd Moellmann2001-03-12 14:57:30 +0000
commit789b6186a36d2ed6b469f7fbf59a46b5d25f87ed (patch)
tree095513641537c2c3f2b458415fb33c6f9b618b50
parent5141f9d0fb812fa1be0d161d92d194304ddd2e65 (diff)
downloademacs-789b6186a36d2ed6b469f7fbf59a46b5d25f87ed.tar.gz
emacs-789b6186a36d2ed6b469f7fbf59a46b5d25f87ed.zip
(generate-file-autoloads): Remove
warning about line lengths.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/emacs-lisp/autoload.el14
2 files changed, 9 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 292f9695bbc..de9a476aac9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-03-12 Gerd Moellmann <gerd@gnu.org>
2
3 * emacs-lisp/autoload.el (generate-file-autoloads): Remove
4 warning about line lengths.
5
12001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be> 62001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
2 7
3 * progmodes/etags.el (tags-compression-info-list): New variable. 8 * progmodes/etags.el (tags-compression-info-list): New variable.
@@ -35,11 +40,11 @@
35 (vc-print-log): Don't switch to the *vc* buffer before the 40 (vc-print-log): Don't switch to the *vc* buffer before the
36 command, so that local variable bindings are preserved. 41 command, so that local variable bindings are preserved.
37 42
38 * vc-{cvs,rcs,sccs}.el: (vc-*-print-log): Output to buffer *vc*, 43 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
39 not the current buffer. 44 not the current buffer.
40 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer. 45 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
41 46
42 * vc-cvs.el: (vc-cvs-checkin): When removing the sticky tag, 47 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
43 make output go to buffer *vc*, not the current buffer. 48 make output go to buffer *vc*, not the current buffer.
44 49
452001-03-09 Stefan Monnier <monnier@cs.yale.edu> 502001-03-09 Stefan Monnier <monnier@cs.yale.edu>
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 @@
1;;; autoload.el --- maintain autoloads in loaddefs.el. 1;;; autoload.el --- maintain autoloads in loaddefs.el.
2 2
3;; Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc. 3;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001
4;; Free Software Foundation, Inc.
4 5
5;; Author: Roland McGrath <roland@gnu.org> 6;; Author: Roland McGrath <roland@gnu.org>
6;; Keywords: maint 7;; Keywords: maint
@@ -345,17 +346,6 @@ are used."
345 (insert "\n" generate-autoload-section-continuation))))) 346 (insert "\n" generate-autoload-section-continuation)))))
346 (insert ";;; Generated autoloads from " 347 (insert ";;; Generated autoloads from "
347 (autoload-trim-file-name file) "\n") 348 (autoload-trim-file-name file) "\n")
348 ;; Warn if we put a line in loaddefs.el
349 ;; that is long enough to cause trouble.
350 (while (< (point) output-end)
351 (let ((beg (point)))
352 (end-of-line)
353 (if (> (- (point) beg) 900)
354 (progn
355 (message "A line is too long--over 900 characters")
356 (sleep-for 2)
357 (goto-char output-end))))
358 (forward-line 1))
359 (goto-char output-end) 349 (goto-char output-end)
360 (insert generate-autoload-section-trailer))) 350 (insert generate-autoload-section-trailer)))
361 (message "Generating autoloads for %s...done" file))) 351 (message "Generating autoloads for %s...done" file)))