From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: phillip.lord@russet.org.uk (Phillip Lord) Newsgroups: gmane.emacs.devel Subject: reftex.el autoloads Date: Thu, 10 Dec 2015 11:03:30 +0000 Message-ID: <87h9jqo9a5.fsf@russet.org.uk> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1449745431 8179 80.91.229.3 (10 Dec 2015 11:03:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 10 Dec 2015 11:03:51 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 10 12:03:46 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1a6z0j-0000wx-KD for ged-emacs-devel@m.gmane.org; Thu, 10 Dec 2015 12:03:45 +0100 Original-Received: from localhost ([::1]:40450 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6z0i-0003Rp-Rv for ged-emacs-devel@m.gmane.org; Thu, 10 Dec 2015 06:03:44 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6z0c-0003QN-4a for emacs-devel@gnu.org; Thu, 10 Dec 2015 06:03:41 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a6z0Y-0000DT-Sp for emacs-devel@gnu.org; Thu, 10 Dec 2015 06:03:38 -0500 Original-Received: from cheviot22.ncl.ac.uk ([128.240.234.22]:45060) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6z0Y-00009l-NJ for emacs-devel@gnu.org; Thu, 10 Dec 2015 06:03:34 -0500 Original-Received: from smtpauth-vm.ncl.ac.uk ([10.8.233.129] helo=smtpauth.ncl.ac.uk) by cheviot22.ncl.ac.uk with esmtp (Exim 4.63) (envelope-from ) id 1a6z0V-0006PG-DJ for emacs-devel@gnu.org; Thu, 10 Dec 2015 11:03:31 +0000 Original-Received: from jangai.ncl.ac.uk ([10.66.67.223] helo=localhost) by smtpauth.ncl.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1a6z0U-0002t3-UL for emacs-devel@gnu.org; Thu, 10 Dec 2015 11:03:30 +0000 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 128.240.234.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:196019 Archived-At: I'm trying to run git bisect on emacs, but I have a problem. After building and testing emacs, routinely, git cannot start the next bisect because reftex.el seems to have been changed locally. Of course, I can fix this with git checkout lisp/textmodes/reftex.el, but I am trying to do an unattended bisect. The diff looks like this.... git diff diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 84efa7a..4ee3658 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -2397,7 +2397,7 @@ reftex-report-bug ^L ;;; Start of automatically extracted autoloads. ^L -;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "cf606f7918831321cb46f254436dc66e") +;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "7c0e0b46919f4ceefe1026e31e73ebcd") ;;; Generated autoloads from reftex-auc.el (autoload 'reftex-arg-label "reftex-auc" "\ So, it appears that reftex.el is actually partially real source and partially generated during the normal build, which doesn't seem a good thing to me. Am I missing something? And is there a good way to fix it? Phil