From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: texinfo-loaddefs.el? Date: Thu, 29 Apr 2021 22:38:20 +0300 Message-ID: <83o8dwdgpf.fsf@gnu.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="35501"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Glenn Morris Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Apr 29 21:39:02 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lcCV4-000975-5e for ged-emacs-devel@m.gmane-mx.org; Thu, 29 Apr 2021 21:39:02 +0200 Original-Received: from localhost ([::1]:37456 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lcCV3-00027B-8m for ged-emacs-devel@m.gmane-mx.org; Thu, 29 Apr 2021 15:39:01 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:38056) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lcCUZ-0001gt-KY for emacs-devel@gnu.org; Thu, 29 Apr 2021 15:38:31 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:49108) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lcCUZ-0006C7-DM for emacs-devel@gnu.org; Thu, 29 Apr 2021 15:38:31 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:3704 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1lcCUY-0008O5-9H; Thu, 29 Apr 2021 15:38:30 -0400 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:268636 Archived-At: commit 68bf917896daa10601c3fdff172205e9aa06d155 Author: Glenn Morris AuthorDate: Thu Apr 29 11:42:03 2021 -0700 Commit: Glenn Morris CommitDate: Thu Apr 29 11:42:03 2021 -0700 Automatically generate texinfo.el internal autoloads * lisp/textmodes/texinfo.el: Replace manual autoloads. * lisp/textmodes/makeinfo.el (makeinfo-region, makeinfo-buffer) (makeinfo-recenter-compilation-buffer): * lisp/textmodes/texnfo-upd.el (texinfo-make-menu) (texinfo-all-menus-update, texinfo-start-menu-description) (texinfo-indent-menu-description, texinfo-master-menu) (texinfo-update-node, texinfo-every-node-update) (texinfo-sequential-node-update, texinfo-insert-node-lines) (texinfo-multiple-files-update): Add autoload cookies, and set generated-autoload-file. This breaks the build: ELC textmodes/makeinfo.elc In toplevel form: textmodes/makeinfo.el:71:1: Error: Cannot open load file: No such file or directory, texinfo-loaddefs Makefile:301: recipe for target `textmodes/makeinfo.elc' failed make[2]: *** [textmodes/makeinfo.elc] Error 1 make[2]: Leaving directory `/d/gnu/git/emacs/trunk/lisp' make[2]: Entering directory `/d/gnu/git/emacs/trunk/lisp' ELC textmodes/texnfo-upd.elc ELC textmodes/texinfo.elc In toplevel form: textmodes/texnfo-upd.el:175:1: Error: Cannot open load file: No such file or directory, texinfo-loaddefs In toplevel form: textmodes/texinfo.el:77:1: Error: Cannot open load file: No such file or directory, texinfo-loaddefs Makefile:301: recipe for target `textmodes/texinfo.elc' failed make[2]: *** [textmodes/texinfo.elc] Error 1 make[2]: *** Waiting for unfinished jobs.... Makefile:301: recipe for target `textmodes/texnfo-upd.elc' failed make[2]: *** [textmodes/texnfo-upd.elc] Error 1 I don't think I understand how texinfo-loaddefs.el was supposed to be created. What am I missing?