unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
@ 2017-04-22 16:14 İ. Göktuğ Kayaalp
  2017-05-04  9:15 ` Göktuğ Kayaalp
  0 siblings, 1 reply; 7+ messages in thread
From: İ. Göktuğ Kayaalp @ 2017-04-22 16:14 UTC (permalink / raw)
  To: 26609


Opening a file version-controlled under mercurial causes the following
error:

vc-hg--requirements-understood-p: Symbol’s function definition is void:
cl-set-difference

And the file is not opened.

Reproduction steps:

$ emacs -Q -file <a-hg-controlled-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:
 
 (eval-when-compile
-  (require 'cl-lib)
   (require 'vc)
   (require 'vc-dir))
 
+(require 'cl-lib)
+
 (declare-function vc-compilation-mode "vc-dispatcher" (backend))
 
 ;;; 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 ‘/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el’ (54898 characters)
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 ‘/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el’ (54840 characters)
Quit
Undo!
Mark set
Saving file /home/g/co/GNU-Emacs/lisp/vc/vc-hg.el...
Wrote ‘/home/g/co/GNU-Emacs/lisp/vc/vc-hg.el’ (54878 characters)

Configured using:
 'configure --prefix=/home/g/local --with-x-toolkit=gtk3 --with-modules
 --with-file-notification=yes --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=ibus
  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))





^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-04-22 16:14 bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error İ. Göktuğ Kayaalp
@ 2017-05-04  9:15 ` Göktuğ Kayaalp
  2017-05-04 11:10   ` Dmitry Gutov
  2017-05-04 14:44   ` Eli Zaretskii
  0 siblings, 2 replies; 7+ messages in thread
From: Göktuğ Kayaalp @ 2017-05-04  9:15 UTC (permalink / raw)
  To: 26609

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.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-05-04  9:15 ` Göktuğ Kayaalp
@ 2017-05-04 11:10   ` Dmitry Gutov
  2017-05-04 12:23     ` Eli Zaretskii
  2017-05-04 14:44   ` Eli Zaretskii
  1 sibling, 1 reply; 7+ messages in thread
From: Dmitry Gutov @ 2017-05-04 11:10 UTC (permalink / raw)
  To: Göktuğ Kayaalp, 26609

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?





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-05-04 11:10   ` Dmitry Gutov
@ 2017-05-04 12:23     ` Eli Zaretskii
  2017-05-04 12:52       ` Dmitry Gutov
  0 siblings, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2017-05-04 12:23 UTC (permalink / raw)
  To: 26609, dgutov, self

On May 4, 2017 2:10:51 PM GMT+03:00, Dmitry Gutov <dgutov@yandex.ru> wrote:
>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?

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.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-05-04 12:23     ` Eli Zaretskii
@ 2017-05-04 12:52       ` Dmitry Gutov
  2017-05-04 16:11         ` Göktuğ Kayaalp
  0 siblings, 1 reply; 7+ messages in thread
From: Dmitry Gutov @ 2017-05-04 12:52 UTC (permalink / raw)
  To: Eli Zaretskii, Göktuğ Kayaalp, 26609-done

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.






^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-05-04  9:15 ` Göktuğ Kayaalp
  2017-05-04 11:10   ` Dmitry Gutov
@ 2017-05-04 14:44   ` Eli Zaretskii
  1 sibling, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2017-05-04 14:44 UTC (permalink / raw)
  To: Göktuğ Kayaalp; +Cc: 26609

> From: Göktuğ Kayaalp <self@gkayaalp.com>
> 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.





^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error
  2017-05-04 12:52       ` Dmitry Gutov
@ 2017-05-04 16:11         ` Göktuğ Kayaalp
  0 siblings, 0 replies; 7+ messages in thread
From: Göktuğ Kayaalp @ 2017-05-04 16:11 UTC (permalink / raw)
  To: Dmitry Gutov; +Cc: 26609-done

On 2017-05-04 15:52 +03, Dmitry Gutov <dgutov@yandex.ru> 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!





^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-05-04 16:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-22 16:14 bug#26609: 26.0.50; Opening Mercurial-controlled file causes void function error İ. Göktuğ Kayaalp
2017-05-04  9:15 ` Göktuğ Kayaalp
2017-05-04 11:10   ` Dmitry Gutov
2017-05-04 12:23     ` Eli Zaretskii
2017-05-04 12:52       ` Dmitry Gutov
2017-05-04 16:11         ` Göktuğ Kayaalp
2017-05-04 14:44   ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).