From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 08:14:55 2022 Received: (at submit) by debbugs.gnu.org; 24 Aug 2022 12:14:55 +0000 Received: from localhost ([127.0.0.1]:45875 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oQpHb-0007Kv-8D for submit@debbugs.gnu.org; Wed, 24 Aug 2022 08:14:55 -0400 Received: from lists.gnu.org ([209.51.188.17]:57900) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oQpHY-0007Kl-3h for submit@debbugs.gnu.org; Wed, 24 Aug 2022 08:14:53 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:46678) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oQpHX-0006rf-UF for bug-gnu-emacs@gnu.org; Wed, 24 Aug 2022 08:14:51 -0400 Received: from mail104.syd.optusnet.com.au ([211.29.132.246]:38015) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oQpHU-0003I0-4T for bug-gnu-emacs@gnu.org; Wed, 24 Aug 2022 08:14:51 -0400 Received: from lamech (n58-106-112-39.bla1.nsw.optusnet.com.au [58.106.112.39]) by mail104.syd.optusnet.com.au (Postfix) with ESMTPS id D946D62E45F for ; Wed, 24 Aug 2022 22:14:39 +1000 (AEST) From: Malcolm Purvis To: bug-gnu-emacs@gnu.org Subject: 29.0.50; void-function byte-compile-warn-obsolete when building latest org-mode Date: Wed, 24 Aug 2022 22:14:39 +1000 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (darwin) MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.4 cv=VuxAv86n c=1 sm=1 tr=0 ts=63061630 a=+3Gg/HrXTk6R1U13niALMg==:117 a=+3Gg/HrXTk6R1U13niALMg==:17 a=mDV3o1hIAAAA:8 a=X_NtB16hpJAWzOpkGVAA:9 a=_FVE-zBwftR9WsbkzFJk:22 Received-SPF: none client-ip=211.29.132.246; envelope-from=malcolm@purvis.id.au; helo=mail104.syd.optusnet.com.au X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Trying to build the latest development version of org-mode (from https://git.savannah.gnu.org/git/emacs/org-mode.git/) with the latest development version of Emacs ("HEAD is now at e518146a30 Fix input extension focus tracking with some window managers") fails with the following error: --8<---------------cut here---------------start------------->8--- Error: error ("Eager macro-expansion failure: (void-function byte-compile-warn-obsolete)") debug-early-backtrace() debug-early(error (error "Eager macro-expansion failure: (void-function byte-compile-warn-obsolete)")) error("Eager macro-expansion failure: %S" (void-function byte-compile-warn-obsolete)) internal-macroexpand-for-load((defalias 'org-string-width #'(lambda (string &optional pixels) "Return width of STRING when displayed in the current buffer.\nReturn width in pixels when PIXELS is non-nil." (if (and (version< emacs-version "28") (not pixels)) (org--string-width-1 string) (remove-text-properties 0 (length string) '(wrap-prefix t line-prefix t) string) (unless pixels (remove-text-properties 0 (length string) '(face t) string)) (let ((current-invisibility-spec (or (and (not (listp buffer-invisibility-spec)) buffer-invisibility-spec) (let (result) (dolist (el buffer-invisibility-spec) (unless (or (memq el '(org-fold-drawer org-fold-block org-fold-outline)) (and (listp el) (memq (car el) '(org-fold-drawer org-fold-block org-fold-outline)))) (push el result))) result))) (current-char-property-alias-alist char-property-alias-alist)) (with-temp-buffer (setq-local display-line-numbers nil) (setq-local buffer-invisibility-spec (if (listp current-invisibility-spec) (mapcar (lambda (el) (if (and (consp el) (cdr el)) (list (car el)) el)) current-invisibility-spec) current-invisibility-spec)) (setq-local char-property-alias-alist current-char-property-alias-alist) (let (pixel-width symbol-width) (with-silent-modifications (setf (buffer-string) string) (setq pixel-width (if (get-buffer-window (current-buffer)) (car (window-text-pixel-size nil (line-beginning-position) (point-max))) (set-window-buffer nil (current-buffer)) (car (window-text-pixel-size nil (line-beginning-position) (point-max))))) (unless pixels (setf (buffer-string) "a") (setq symbol-width (if (get-buffer-window (current-buffer)) (car (window-text-pixel-size nil (line-beginning-position) (point-max))) (set-window-buffer nil (current-buffer)) (car (window-text-pixel-size nil (line-beginning-position) (point-max))))))) (if pixels pixel-width (/ pixel-width symbol-width)))))))) t) load-with-code-conversion("/Users/malcolmp/builds/org-mode/org-mode.git/lisp/org-macs.el" "/Users/malcolmp/builds/org-mode/org-mode.git/lisp/org-macs.el" nil t) require(org-macs) load-with-code-conversion("/Users/malcolmp/builds/org-mode/org-mode.git/lisp/org-compat.el" "/Users/malcolmp/builds/org-mode/org-mode.git/lisp/org-compat.el" nil nil) load("org-compat.el") command-line-1(("--eval" "(setq vc-handled-backends nil org-startup-folded nil org-element-cache-persistent nil)" "--eval" "(add-to-list 'load-path \".\")" "--eval" "(load \"org-compat.el\")" "--eval" "(load \"../mk/org-fixup.el\")" "--eval" "(org-make-org-version \"9.5.4\" \"release_9.5.4-758-g3c11e9\")")) command-line() normal-top-level() Eager macro-expansion failure: (void-function byte-compile-warn-obsolete) make[1]: *** [org-version.el] Error 255 make: *** [compile] Error 2 garden:org-mode.git malcolmp$ git status On branch main Your branch is up to date with 'origin/main'. --8<---------------cut here---------------end--------------->8--- This error appeared in the last few days. In GNU Emacs 29.0.50 (build 2, x86_64-apple-darwin21.6.0, NS appkit-2113.60 Version 12.5.1 (Build 21G83)) of 2022-08-23 built on lamechWindowing system distributor 'Apple', version 10.3.2113 System Description: macOS 12.5.1 Configured using: 'configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@29/29.0.50_1/share/info/emacs --prefix=/usr/local/Cellar/emacs-head@29/29.0.50_1 --without-x --without-dbus --with-imagemagick --with-modules --with-gnutls --with-rsvg --with-xml2 --with-xwidgets --with-ns --disable-ns-self-contained' -- Malcolm Purvis From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 24 08:30:25 2022 Received: (at control) by debbugs.gnu.org; 24 Aug 2022 12:30:25 +0000 Received: from localhost ([127.0.0.1]:45890 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oQpWa-0007kS-V6 for submit@debbugs.gnu.org; Wed, 24 Aug 2022 08:30:25 -0400 Received: from quimby.gnus.org ([95.216.78.240]:49468) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oQpWZ-0007k7-Ul for control@debbugs.gnu.org; Wed, 24 Aug 2022 08:30:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Gn8dF51KaE0wwFAL8olcUD7LT/Fh5J0PYJRGs4Es9t8=; b=K7nN8Qmg9VkykEwsVckpI7KXrg tH7NNNHBm0+ArsUaL30J5cCI9iSsXkPjsvVS57aGJU8kfOZweyxqtNC6uC4blIlCRXZBVwKxqf0Hc Oh9rswnOLpj46r+E7s+mmafnxlWXR2495WZGwl967JzuRXqDl/uEcnxpltfKsUVdSGdo=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oQpWR-0005Km-Bo for control@debbugs.gnu.org; Wed, 24 Aug 2022 14:30:17 +0200 Date: Wed, 24 Aug 2022 14:30:14 +0200 Message-Id: <875yihn7s9.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #57381 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: reassign 57381 org-mode quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) reassign 57381 org-mode quit From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 09:00:30 2022 Received: (at 57381) by debbugs.gnu.org; 25 Aug 2022 13:00:30 +0000 Received: from localhost ([127.0.0.1]:49381 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oRCTF-0007Ip-Mr for submit@debbugs.gnu.org; Thu, 25 Aug 2022 09:00:30 -0400 Received: from quimby.gnus.org ([95.216.78.240]:60214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oRCTC-0007IN-2h for 57381@debbugs.gnu.org; Thu, 25 Aug 2022 09:00:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:Date:References: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Egf5jTnao4urDd8xUNDsrrWNPnvMq9Ztuxt3szyahNU=; b=EFs1TI3q6iYkKu4MxHazgx3WtE 6sD4m41tF2pXvPLmmPCfEErkALhByhVtmvYr1dhi1Y7HHGXcmPtozdeSdAM+19+Nw+BxU1SJ3s3CU m6/QibHhDe4LoRv1R5O6lxVM5/tQ4/pxFTtDZ6Pg24suHdd+xdFKPTTVE5xKKUMcl1fo=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oRCT3-0007sd-15; Thu, 25 Aug 2022 15:00:19 +0200 From: Lars Ingebrigtsen To: Malcolm Purvis Subject: Re: bug#57381: 29.0.50; void-function byte-compile-warn-obsolete when building latest org-mode In-Reply-To: (Malcolm Purvis's message of "Wed, 24 Aug 2022 22:14:39 +1000") References: X-Now-Playing: Two Nice Girls's _Chloe Liked Olivia_: "The Queer Song" Date: Thu, 25 Aug 2022 15:00:15 +0200 Message-ID: <87a67sjx5s.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Malcolm Purvis writes: > Error: error ("Eager macro-expansion failure: (void-function > byte-compile-warn-obsolete)") debug-early-backtrace() > debug-early(error (error "Eager macro-expansion failure: > (void-function byte- [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 57381 Cc: 57381@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Malcolm Purvis writes: > Error: error ("Eager macro-expansion failure: (void-function > byte-compile-warn-obsolete)") debug-early-backtrace() > debug-early(error (error "Eager macro-expansion failure: > (void-function byte-compile-warn-obsolete)")) error("Eager This should now be fixed in Emacs 29. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 09:00:34 2022 Received: (at control) by debbugs.gnu.org; 25 Aug 2022 13:00:34 +0000 Received: from localhost ([127.0.0.1]:49385 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oRCTK-0007JA-32 for submit@debbugs.gnu.org; Thu, 25 Aug 2022 09:00:34 -0400 Received: from quimby.gnus.org ([95.216.78.240]:60232) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oRCTG-0007IX-7w for control@debbugs.gnu.org; Thu, 25 Aug 2022 09:00:30 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=dQU3qdf2qoiNDD2F5qwxOccoF20/qdU8v6duQ95tXNo=; b=Hed26q7uqfazfD+zhBBJzR6vSY q2lfhzgBE0KOD6T5HN5+t0e6K3QkK0SIOVRWC4yGULQ5zIHuoGIJfgZbPoppKK1TEkgyjOO2Fjgkp HSEA7+waxLYJKrFnGa+gCjN/XRRRU5ilr+jTDsCzIJXkm2wFrmfOgf+IDJMWVfEh/hPw=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oRCT8-0007sh-I8 for control@debbugs.gnu.org; Thu, 25 Aug 2022 15:00:24 +0200 Date: Thu, 25 Aug 2022 15:00:20 +0200 Message-Id: <878rncjx5n.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #57381 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 57381 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) close 57381 quit From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 25 22:04:07 2022 Received: (at 57381) by debbugs.gnu.org; 26 Aug 2022 02:04:07 +0000 Received: from localhost ([127.0.0.1]:51682 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oROha-00036S-Mo for submit@debbugs.gnu.org; Thu, 25 Aug 2022 22:04:06 -0400 Received: from mail104.syd.optusnet.com.au ([211.29.132.246]:40129) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oROhV-00035u-3G for 57381@debbugs.gnu.org; Thu, 25 Aug 2022 22:04:05 -0400 Received: from HYCQ2Y7NXG (n58-106-112-39.bla1.nsw.optusnet.com.au [58.106.112.39]) (Authenticated sender: malcolmpurvis@optusnet.com.au) by mail104.syd.optusnet.com.au (Postfix) with ESMTPSA id 7573062D80F; Fri, 26 Aug 2022 12:03:55 +1000 (AEST) From: Malcolm Purvis To: Lars Ingebrigtsen Subject: Re: bug#57381: 29.0.50; void-function byte-compile-warn-obsolete when building latest org-mode In-Reply-To: <87a67sjx5s.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 25 Aug 2022 15:00:15 +0200") References: <87a67sjx5s.fsf@gnus.org> Date: Fri, 26 Aug 2022 12:03:54 +1000 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (darwin) MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.4 cv=VuxAv86n c=1 sm=1 tr=0 ts=63082a0b a=+3Gg/HrXTk6R1U13niALMg==:117 a=+3Gg/HrXTk6R1U13niALMg==:17 a=OocQHUDgAAAA:8 a=G4V32xfgmjFRiZ96Xu8A:9 a=3kMryxnwxW8A:10 a=3fbLLLLNgwQA:10 a=SyJTc_1MaqWpY4Ysu036:22 a=xUZTl98r3Qw_uB5NK3jt:22 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 57381 Cc: 57381@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) >>>>> "Lars" == Lars Ingebrigtsen writes: > This should now be fixed in Emacs 29. Confirmed. Thank you. Malcolm -- Malcolm Purvis From unknown Sat Jun 14 19:34:24 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 23 Sep 2022 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator