From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 22 12:14:58 2017 Received: (at submit) by debbugs.gnu.org; 22 Apr 2017 16:14:58 +0000 Received: from localhost ([127.0.0.1]:34603 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d1xgY-0007oZ-Ih for submit@debbugs.gnu.org; Sat, 22 Apr 2017 12:14:58 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52846) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d1xgW-0007oM-CV for submit@debbugs.gnu.org; Sat, 22 Apr 2017 12:14:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1xgO-0006ym-LG for submit@debbugs.gnu.org; Sat, 22 Apr 2017 12:14:50 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:56439) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d1xgO-0006yh-Ih for submit@debbugs.gnu.org; Sat, 22 Apr 2017 12:14:48 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43814) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d1xgN-0000Ku-4L for bug-gnu-emacs@gnu.org; Sat, 22 Apr 2017 12:14:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d1xgI-0006yH-13 for bug-gnu-emacs@gnu.org; Sat, 22 Apr 2017 12:14:46 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:55738) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d1xgH-0006y8-Qk for bug-gnu-emacs@gnu.org; Sat, 22 Apr 2017 12:14:41 -0400 Received: from mfilter16-d.gandi.net (mfilter16-d.gandi.net [217.70.178.144]) by relay4-d.mail.gandi.net (Postfix) with ESMTP id 86B981720A3 for ; Sat, 22 Apr 2017 18:14:40 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfilter16-d.gandi.net Received: from relay4-d.mail.gandi.net ([IPv6:::ffff:217.70.183.196]) by mfilter16-d.gandi.net (mfilter16-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id MP0QIAMLmt0q for ; Sat, 22 Apr 2017 18:14:38 +0200 (CEST) X-Originating-IP: 95.65.176.216 Received: from xi.bootis.xi.bootis (unknown [95.65.176.216]) (Authenticated sender: self@gkayaalp.com) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id A9340172095 for ; Sat, 22 Apr 2017 18:14:38 +0200 (CEST) From: =?utf-8?B?xLAuIEfDtmt0dcSfIEtheWFhbHA=?= To: bug-gnu-emacs@gnu.org Subject: 26.0.50; Opening Mercurial-controlled file causes void function error Date: Sat, 22 Apr 2017 19:14:37 +0300 Message-ID: <87d1c4o1w2.fsf@xi.bootis> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) 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: -5.0 (-----) Opening a file version-controlled under mercurial causes the following error: vc-hg--requirements-understood-p: Symbol=E2=80=99s function definition is v= oid: cl-set-difference And the file is not opened. Reproduction steps: $ emacs -Q -file In `vc-hg.el' `cl-lib' is required in compile time. Requiring it in evaluation seems to fix the problem. Below is the patch that fixes the problem. 8< --- begin patch --- >8 diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index 5348341..37ea928 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -102,10 +102,11 @@ ;;; Code: =20 (eval-when-compile - (require 'cl-lib) (require 'vc) (require 'vc-dir)) =20 +(require 'cl-lib) + (declare-function vc-compilation-mode "vc-dispatcher" (backend)) =20 ;;; Customization options 8< --- end patch --- >8 In GNU Emacs 26.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of 2017-04-22 built on xi.bootis Repository revision: eb52828a439f674733ba70844b795c6673733572 Windowing system distributor 'Fedora Project', version 11.0.11899901 Recent messages: Saving file /home/g/co/GNU-Emacs/lisp/vc/vc-hg.el... Wrote =E2=80=98/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el=E2=80=99 (54898 charac= ters) Finding changes in /home/g/co/GNU-Emacs/lisp/vc/vc-hg.el...done Saving file /home/g/co/GNU-Emacs/lisp/vc/vc-hg.el... Wrote =E2=80=98/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el=E2=80=99 (54840 charac= ters) Quit Undo! Mark set Saving file /home/g/co/GNU-Emacs/lisp/vc/vc-hg.el... Wrote =E2=80=98/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el=E2=80=99 (54878 charac= ters) Configured using: 'configure --prefix=3D/home/g/local --with-x-toolkit=3Dgtk3 --with-modules --with-file-notification=3Dyes --with-mailutils' Configured features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GCONF GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 MODULES Important settings: value of $LC_MESSAGES: en_GB.UTF-8 value of $LANG: en_GB.UTF-8 value of $XMODIFIERS: @im=3Dibus locale-coding-system: utf-8-unix Major mode: Shell Minor modes in effect: diff-auto-refine-mode: t shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message subr-x puny format-spec rfc822 mml mml-sec password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils whitespace vc vc-dispatcher vc-git diff-mode easy-mmode map seq byte-opt gv bytecomp byte-compile cconv pcmpl-unix shell pcomplete comint ansi-color ring jka-compr find-func thingatpt help-fns radix-tree help-mode easymenu cl-loaddefs cl-lib vc-hg dired dired-loaddefs time-date mule-util warnings tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite charscript case-table epa-hook jka-cmpr-hook help simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote dbusbind inotify dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 145494 9482) (symbols 48 21718 1) (miscs 40 99 330) (strings 32 24013 4135) (string-bytes 1 760543) (vectors 16 15386) (vector-slots 8 488092 4593) (floats 8 63 292) (intervals 56 4203 0) (buffers 976 21)) From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 05:15:13 2017 Received: (at 26609) by debbugs.gnu.org; 4 May 2017 09:15:13 +0000 Received: from localhost ([127.0.0.1]:53529 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Cqu-0006pV-PM for submit@debbugs.gnu.org; Thu, 04 May 2017 05:15:12 -0400 Received: from relay9-d.mail.gandi.net ([217.70.183.199]:60601) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Cqs-0006pM-Rl for 26609@debbugs.gnu.org; Thu, 04 May 2017 05:15:11 -0400 Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by relay9-d.mail.gandi.net (Postfix) with ESMTPS id DB96640762 for <26609@debbugs.gnu.org>; Thu, 4 May 2017 11:15:07 +0200 (CEST) Received: from mfilter35-d.gandi.net (mfilter35-d.gandi.net [217.70.178.166]) by relay6-d.mail.gandi.net (Postfix) with ESMTP id 20531FB8CE for <26609@debbugs.gnu.org>; Thu, 4 May 2017 11:15:07 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfilter35-d.gandi.net Received: from relay6-d.mail.gandi.net ([IPv6:::ffff:217.70.183.198]) by mfilter35-d.gandi.net (mfilter35-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id Lk_2hC_-OHui for <26609@debbugs.gnu.org>; Thu, 4 May 2017 11:15:05 +0200 (CEST) X-Originating-IP: 46.2.235.207 Received: from xi.xi (unknown [46.2.235.207]) (Authenticated sender: self@gkayaalp.com) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 9DF05FB8EF for <26609@debbugs.gnu.org>; Thu, 4 May 2017 11:15:02 +0200 (CEST) From: =?utf-8?Q?G=C3=B6ktu=C4=9F_Kayaalp?= To: 26609@debbugs.gnu.org Subject: Re: 26.0.50; Opening Mercurial-controlled file causes void function error Date: Thu, 04 May 2017 12:15:02 +0300 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -3.5 (---) X-Debbugs-Envelope-To: 26609 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.5 (---) Hello, I just wanted to ping this bug report as I've received no response in 11 days (as per debbugs reports). Please excuse me if I was not supposed to do this. -gk. From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 07:11:01 2017 Received: (at 26609) by debbugs.gnu.org; 4 May 2017 11:11:01 +0000 Received: from localhost ([127.0.0.1]:53624 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Eez-00017A-5H for submit@debbugs.gnu.org; Thu, 04 May 2017 07:11:01 -0400 Received: from mail-wr0-f175.google.com ([209.85.128.175]:36683) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Eex-00016y-Nx for 26609@debbugs.gnu.org; Thu, 04 May 2017 07:11:00 -0400 Received: by mail-wr0-f175.google.com with SMTP id l50so5842289wrc.3 for <26609@debbugs.gnu.org>; Thu, 04 May 2017 04:10:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=1swJVzsY61XSoS3iB++PBZzkNSD22ZYfwN0doYI3Xy4=; b=JyAd579k3YxMVoopfoJslHAL/R0hS+R0KUVaYDMpByVyyAWsUgmc0TZw5bgOd/ygcP Guz+SwNbq3Hv51hcqQqiBrAke3dGNrAFUM4736sFClwGKcaTDELzQPp4To14pi3lTaTE /Eng0OP3TUCMNtTE3u3AnuWB54gnIWFh4C1tCRCWyjgPBxshiN5TitYpPWGIY0afhN2b kNc0N+anwPStfwHf/cK1UH+hvJAaAETfL2z1t2uAuovg7QMVmH5plWYA1iGCp7aALo9P sJGwetOMzD5Xjiyq6digYrQV1aU5qilUUdhJBN4dRh0khDxbKnf8+SkL1uh1RYyXBtmW XcRQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:subject:to:references:from:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=1swJVzsY61XSoS3iB++PBZzkNSD22ZYfwN0doYI3Xy4=; b=nt78wU2UT9S5q3pqRPp8GMP/v43gnliHkefLjp+Nij0r9EtZ+NB09oVcoMsOi9k8A9 EprECPEb6kIToRPL1We1YuvCemMGr0Y3mXbD7hLGe34lngYgZnKaKlVGJ/4/Xyyw8Yol 6pmhOAh0LScIongXW9qIg20kI3VSiHxCHcFMCqb1fkF4VrERRd5uXySVPrOXWISC2mL3 cw2BpE4sFyD2wVsT0Zzk8Ltom/9B3uKQa0Fhu1GOUkIgBkYq8bfhH2jN+K/E9hVKVUaG Rhlw+Iy49twGmWux3AHlATLgKzLyWODrM0Af1wS12IDrX6GXTUSh0wbeiDzfZ4vqeOj9 QMOg== X-Gm-Message-State: AN3rC/6vdWG7oMJJwiJZ0JuRAZp2+Oaqxl7tBAq1zTMs7G++ofPXpup2 CwfQu4Mn5+1rjxHP92A= X-Received: by 10.223.177.215 with SMTP id r23mr31021857wra.97.1493896253928; Thu, 04 May 2017 04:10:53 -0700 (PDT) Received: from [192.168.1.3] ([185.105.173.156]) by smtp.googlemail.com with ESMTPSA id 39sm2798039wru.50.2017.05.04.04.10.52 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 04 May 2017 04:10:53 -0700 (PDT) Subject: Re: bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error To: =?UTF-8?Q?G=c3=b6ktu=c4=9f_Kayaalp?= , 26609@debbugs.gnu.org References: <87d1c4o1w2.fsf@xi.bootis> From: Dmitry Gutov Message-ID: <5cdb3359-f6cc-5455-0742-288f57761019@yandex.ru> Date: Thu, 4 May 2017 14:10:51 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Thunderbird/53.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Spam-Score: -2.1 (--) X-Debbugs-Envelope-To: 26609 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: -2.1 (--) On 04.05.2017 12:15, Göktuğ Kayaalp wrote: > Hello, > > I just wanted to ping this bug report as I've received no response in 11 > days (as per debbugs reports). Please excuse me if I was not supposed > to do this. Thanks for the ping. I initially expected this to be an obvious error made recently, and to someone else to fix it. However, this doesn't seem to be the case. I can reproduce this starting with 'emacs -Q'. Does anyone know how this is possible, given than cl-set-difference is an autoloaded function? From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 08:24:12 2017 Received: (at submit) by debbugs.gnu.org; 4 May 2017 12:24:13 +0000 Received: from localhost ([127.0.0.1]:53681 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Fno-0004ZK-N8 for submit@debbugs.gnu.org; Thu, 04 May 2017 08:24:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38908) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6Fnm-0004Z8-WF for submit@debbugs.gnu.org; Thu, 04 May 2017 08:24:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6Fng-0002GU-Rp for submit@debbugs.gnu.org; Thu, 04 May 2017 08:24:05 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:32966) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d6Fng-0002GJ-PE for submit@debbugs.gnu.org; Thu, 04 May 2017 08:24:04 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6Fnf-00074Z-JH for bug-gnu-emacs@gnu.org; Thu, 04 May 2017 08:24:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6Fnc-0002BY-DI for bug-gnu-emacs@gnu.org; Thu, 04 May 2017 08:24:03 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:33789) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6Fnc-0002BN-AC; Thu, 04 May 2017 08:24:00 -0400 Received: from [176.12.138.32] (port=51870 helo=[10.130.130.210]) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1d6Fnb-0000lB-B6; Thu, 04 May 2017 08:23:59 -0400 Date: Thu, 04 May 2017 15:23:55 +0300 User-Agent: K-9 Mail for Android In-Reply-To: <5cdb3359-f6cc-5455-0742-288f57761019@yandex.ru> References: <87d1c4o1w2.fsf@xi.bootis> <5cdb3359-f6cc-5455-0742-288f57761019@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error To: bug-gnu-emacs@gnu.org, Dmitry Gutov , =?UTF-8?Q?G=C3=B6ktu=C4=9F_Kayaalp?= , 26609@debbugs.gnu.org From: Eli Zaretskii Message-ID: <410CD04A-97D8-4278-82E1-20C123AEEAEC@gnu.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) 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: -5.0 (-----) On May 4, 2017 2:10:51 PM GMT+03:00, Dmitry Gutov wrot= e: >On 04=2E05=2E2017 12:15, G=C3=B6ktu=C4=9F Kayaalp wrote: >> Hello, >>=20 >> I just wanted to ping this bug report as I've received no response in >11 >> days (as per debbugs reports)=2E Please excuse me if I was not >supposed >> to do this=2E > >Thanks for the ping=2E I initially expected this to be an obvious error= =20 >made recently, and to someone else to fix it=2E However, this doesn't >seem=20 >to be the case=2E > >I can reproduce this starting with 'emacs -Q'=2E > >Does anyone know how this is possible, given than cl-set-difference is=20 >an autoloaded function? cl-set-difference's autoload form is on cl-loaddefs=2Eel, which is not loa= ded into Emacs by default=2E It's loaded whdn we load cl-lib=2Eel=2E Whic= h is why I think the patch proposed by the OP is TRT=2E From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 08:52:56 2017 Received: (at 26609-done) by debbugs.gnu.org; 4 May 2017 12:52:56 +0000 Received: from localhost ([127.0.0.1]:53695 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6GFc-0005DB-Cy for submit@debbugs.gnu.org; Thu, 04 May 2017 08:52:56 -0400 Received: from mail-wm0-f67.google.com ([74.125.82.67]:35675) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6GFa-0005Cw-N4 for 26609-done@debbugs.gnu.org; Thu, 04 May 2017 08:52:55 -0400 Received: by mail-wm0-f67.google.com with SMTP id d79so3144057wmi.2 for <26609-done@debbugs.gnu.org>; Thu, 04 May 2017 05:52:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-language:content-transfer-encoding; bh=NcunP/WzORsnm9BYeF9fA0DqV4b2KzAmtsZSKzG2zrk=; b=LhnHfvGUcMDRGwBMeyR+yUshRHFBuH2lfvleII4b78M0nKu9Q+zh7FKhaFnd0a7oud ie4uEDPyc+FQTPWcJZ0zZAlLBAnagKp7ZscAQm7E08qsTuUt7iVoVdArjTS1o3zBe4Aa MO1dBSqmzkUDds1Rlcth7dqFpLf2k2WcVFF9WNFt9zsJ+7hkscs0Cn0DhJakjo/jbUYQ ZWAWX05UgWFVBqqXWJrfjMaHfrpjAgbGwy9Po88wYCtvm457O8l5tc1tByZNjXgrbM2C 4Ovne7p7P3FuEpZweLdbt9IwgSU99IIbKu7iPryxc9JTCdY8Axm+/bDUfpNWYmkJwCLj O6BA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:subject:to:references:from:message-id :date:user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=NcunP/WzORsnm9BYeF9fA0DqV4b2KzAmtsZSKzG2zrk=; b=CiMQ6tPIveTi1cUJs1xeY06hZb8aVW6BhlC2XJQ9aSivt6KPyo0MQO//WQRpcTN2S7 hWC25PpM7K/fOgMGto1fnpoeH8ThVSsk1vgRF8fPIXx4FQTQ840XNDLbEo4RMPywH+R6 A7WrCZttzUiocjAaXi/ubkYbnAB4PhHywZyBosjBvDlqHJ53gIAKEiVJr36jaTzfECba nwbBtliawvgm7jZ433R33sjJWQxbKTBV5YHD43qQbnTETkn4TVCIht8wEt9YnBfG1B6J CmI+CMAoHIu4/JBAHRTGvrFyeLiAMOjtiMo8lFBYU8MCLGo1D5io+/PVi6Fcer+Hi85C 7qOg== X-Gm-Message-State: AN3rC/6pxrpAiNjvmuLzbMvDvN1jx7DO3I4zzddT0+Fa0S/28w7kqJA0 8vRbnrdN2aOJqQ== X-Received: by 10.28.93.13 with SMTP id r13mr1758520wmb.39.1493902368792; Thu, 04 May 2017 05:52:48 -0700 (PDT) Received: from [192.168.0.133] ([212.50.99.193]) by smtp.googlemail.com with ESMTPSA id z14sm1417547wmz.2.2017.05.04.05.52.47 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 04 May 2017 05:52:47 -0700 (PDT) Subject: Re: bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error To: Eli Zaretskii , =?UTF-8?Q?G=c3=b6ktu=c4=9f_Kayaalp?= , 26609-done@debbugs.gnu.org References: <87d1c4o1w2.fsf@xi.bootis> <5cdb3359-f6cc-5455-0742-288f57761019@yandex.ru> <410CD04A-97D8-4278-82E1-20C123AEEAEC@gnu.org> From: Dmitry Gutov Message-ID: <71c17313-029b-73c1-a9b8-b99819b1e08c@yandex.ru> Date: Thu, 4 May 2017 15:52:45 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:53.0) Gecko/20100101 Thunderbird/53.0 MIME-Version: 1.0 In-Reply-To: <410CD04A-97D8-4278-82E1-20C123AEEAEC@gnu.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 26609-done 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: 0.7 (/) On 04.05.2017 15:23, Eli Zaretskii wrote: > cl-set-difference's autoload form is on cl-loaddefs.el, which is not loaded into Emacs by default. It's loaded whdn we load cl-lib.el. Which is why I think the patch proposed by the OP is TRT. Oh! Thanks for the explanation. I've pushed the patch now, thanks to OP again, closing. From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 10:45:04 2017 Received: (at 26609) by debbugs.gnu.org; 4 May 2017 14:45:04 +0000 Received: from localhost ([127.0.0.1]:54667 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6I08-0001Ku-AQ for submit@debbugs.gnu.org; Thu, 04 May 2017 10:45:04 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53011) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6I06-0001K9-LX for 26609@debbugs.gnu.org; Thu, 04 May 2017 10:45:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d6Hzy-0003jP-C1 for 26609@debbugs.gnu.org; Thu, 04 May 2017 10:44:57 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=BAYES_20,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:35795) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d6Hzy-0003jI-8J; Thu, 04 May 2017 10:44:54 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1498 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1d6Hzx-0007Dy-L7; Thu, 04 May 2017 10:44:54 -0400 Date: Thu, 04 May 2017 17:44:35 +0300 Message-Id: <831ss4heb0.fsf@gnu.org> From: Eli Zaretskii To: =?utf-8?B?R8O2a3R1xJ8=?= Kayaalp In-reply-to: (message from =?utf-8?B?R8O2a3R1xJ8=?= Kayaalp on Thu, 04 May 2017 12:15:02 +0300) Subject: Re: bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error References: <87d1c4o1w2.fsf@xi.bootis> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 26609 Cc: 26609@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: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) > From: Göktuğ Kayaalp > Date: Thu, 04 May 2017 12:15:02 +0300 > > I just wanted to ping this bug report as I've received no response in 11 > days (as per debbugs reports). Please excuse me if I was not supposed > to do this. No, that's exactly what you are supposed to do when we forget about your reports. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Thu May 04 12:11:52 2017 Received: (at 26609-done) by debbugs.gnu.org; 4 May 2017 16:11:52 +0000 Received: from localhost ([127.0.0.1]:54724 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6JM8-0003KX-Hi for submit@debbugs.gnu.org; Thu, 04 May 2017 12:11:52 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:43242) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d6JM6-0003KN-3y for 26609-done@debbugs.gnu.org; Thu, 04 May 2017 12:11:50 -0400 Received: from mfilter1-d.gandi.net (mfilter1-d.gandi.net [217.70.178.130]) by relay4-d.mail.gandi.net (Postfix) with ESMTP id 613B7172094; Thu, 4 May 2017 18:11:48 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfilter1-d.gandi.net Received: from relay4-d.mail.gandi.net ([IPv6:::ffff:217.70.183.196]) by mfilter1-d.gandi.net (mfilter1-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id wnBFLq9CH8bQ; Thu, 4 May 2017 18:11:47 +0200 (CEST) X-Originating-IP: 46.2.235.207 Received: from xi.xi (unknown [46.2.235.207]) (Authenticated sender: self@gkayaalp.com) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 7EDAF172202; Thu, 4 May 2017 18:11:46 +0200 (CEST) From: =?utf-8?Q?G=C3=B6ktu=C4=9F_Kayaalp?= To: Dmitry Gutov Subject: Re: bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error References: <87d1c4o1w2.fsf@xi.bootis> <5cdb3359-f6cc-5455-0742-288f57761019@yandex.ru> <410CD04A-97D8-4278-82E1-20C123AEEAEC@gnu.org> <71c17313-029b-73c1-a9b8-b99819b1e08c@yandex.ru> Date: Thu, 04 May 2017 19:11:45 +0300 In-Reply-To: <71c17313-029b-73c1-a9b8-b99819b1e08c@yandex.ru> (Dmitry Gutov's message of "Thu, 4 May 2017 15:52:45 +0300") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 26609-done Cc: 26609-done@debbugs.gnu.org, Eli Zaretskii 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: -0.2 (/) On 2017-05-04 15:52 +03, Dmitry Gutov wrote: > On 04.05.2017 15:23, Eli Zaretskii wrote: > >> cl-set-difference's autoload form is on cl-loaddefs.el, which is not >> loaded into Emacs by default. It's loaded whdn we load cl-lib.el. >> Which is why I think the patch proposed by the OP is TRT. > > Oh! Thanks for the explanation. > > I've pushed the patch now, thanks to OP again, closing. You're very welcome! From unknown Fri Jun 13 10:35:49 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, 02 Jun 2017 11:24:03 +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