From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/84751 Path: news.gmane.org!not-for-mail From: Wolfgang Jenkner Newsgroups: gmane.emacs.gnus.general Subject: Re: Missing function 'gnus-get-text-property-excluding-characters-with-faces' using gnus from git Date: Thu, 07 Aug 2014 20:47:33 +0200 Message-ID: <85ppgc9lm6.fsf@iznogoud.viz> References: <87bns5xxzu.fsf@topper.koldfront.dk> <84oavxcad1.fsf@davestoy.home> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1407443665 24716 80.91.229.3 (7 Aug 2014 20:34:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 7 Aug 2014 20:34:25 +0000 (UTC) Cc: ding@gnus.org To: Alan Schmitt Original-X-From: ding-owner+M32995@lists.math.uh.edu Thu Aug 07 22:34:18 2014 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1XFUO9-000167-Mk for ding-account@gmane.org; Thu, 07 Aug 2014 22:34:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1XFUNF-0001W8-De; Thu, 07 Aug 2014 15:33:21 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1XFSpQ-000166-3v for ding@lists.math.uh.edu; Thu, 07 Aug 2014 13:54:20 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1:AES128-SHA:128) (Exim 4.76) (envelope-from ) id 1XFSpO-000196-OW for ding@lists.math.uh.edu; Thu, 07 Aug 2014 13:54:19 -0500 Original-Received: from b2bfep12.mx.upcmail.net ([62.179.121.57]) by quimby.gnus.org with esmtp (Exim 4.80) (envelope-from ) id 1XFSpM-00080Y-Fq for ding@gnus.org; Thu, 07 Aug 2014 20:54:16 +0200 Original-Received: from edge12.upcmail.net ([192.168.13.82]) by b2bfep12-int.chello.at (InterMail vM.8.01.05.11 201-2260-151-128-20120928) with ESMTP id <20140807185410.TMGZ11692.b2bfep12-int.chello.at@edge12.upcmail.net> for ; Thu, 7 Aug 2014 20:54:10 +0200 Original-Received: from iznogoud.viz ([91.119.88.190]) by edge12.upcmail.net with edge id buu91o00a46QafP0Cuu9z0; Thu, 07 Aug 2014 20:54:10 +0200 X-SourceIP: 91.119.88.190 Original-Received: from wolfgang by iznogoud.viz with local (Exim 4.83 (FreeBSD)) (envelope-from ) id 1XFSpF-0001Eu-DV; Thu, 07 Aug 2014 20:54:09 +0200 Mail-Followup-To: Alan Schmitt , ding@gnus.org User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/24.4.50 (berkeley-unix) X-Spam-Score: -1.9 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:84751 Archived-At: On Thu, Aug 07 2014, Alan Schmitt wrote: > I've looked at the site-start.el files (both from the provided emacs > and from my homebrew installation) and they do not mention > gnus-util. I've started emacs with the '-q' option and I don't see it in > the features variable. IIUC, there must be a form in your init file which somehow loads an old version of gnus-util. You could try the following: $ emacs -q C-x C-f M-: (while (not (or (eobp) (featurep 'gnus-util))) (eval (read (current-buffer)))) (I assume that your init file does not set the lexical-binding file local variable) This should leave point after the offending form. In my case, I was surprised to learn that gnus-util was pulled in by (ffap-bindings). Wolfgang