From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Masaru Nomiya Newsgroups: gmane.emacs.devel Subject: Found the cause! (Was: Re: recent emacs 27.0.50 prevent gnuplot's compilation) Date: Fri, 02 Nov 2018 13:55:38 +0900 Message-ID: <87wopwaxit.wl-nomiya@galaxy.dti.ne.jp> References: <87pnvp39vd.wl-nomiya@galaxy.dti.ne.jp> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-Trace: blaine.gmane.org 1541134431 20936 195.159.176.226 (2 Nov 2018 04:53:51 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 2 Nov 2018 04:53:51 +0000 (UTC) User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/27.0 Mule/6.0 (HANACHIRUSATO) To: emacs-devel@gnu.org, eliz@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 02 05:53:47 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gIRSt-0005Nr-Ai for ged-emacs-devel@m.gmane.org; Fri, 02 Nov 2018 05:53:47 +0100 Original-Received: from localhost ([::1]:49680 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gIRUz-00072g-Md for ged-emacs-devel@m.gmane.org; Fri, 02 Nov 2018 00:55:57 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34828) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gIRUu-00072a-3G for emacs-devel@gnu.org; Fri, 02 Nov 2018 00:55:52 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gIRUt-0005ta-4T for emacs-devel@gnu.org; Fri, 02 Nov 2018 00:55:51 -0400 Original-Received: from vsmtp05.dti.ne.jp ([202.216.231.140]:60308) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gIRUo-0005pj-WD; Fri, 02 Nov 2018 00:55:47 -0400 Original-Received: from linux-uw5l.galaxy.dti.ne.jp (KD027095160144.ppp-bb.dion.ne.jp [27.95.160.144]) by vsmtp05.dti.ne.jp (3.11v) with ESMTP AUTH id wA24tcMW013757; Fri, 2 Nov 2018 13:55:39 +0900 (JST) In-Reply-To: <87pnvp39vd.wl-nomiya@galaxy.dti.ne.jp> X-cite: carm 21 X-cite-me: MN X-C-sig-version: Using c-sig version 3.8 X-detected-operating-system: by eggs.gnu.org: Windows NT kernel [generic] [fuzzy] X-Received-From: 202.216.231.140 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:230968 Archived-At: Hello, In the Message; Subject : recent emacs 27.0.50 prevent gnuplot's compilation Message-ID : <87pnvp39vd.wl-nomiya@galaxy.dti.ne.jp> Date & Time: Thu, 01 Nov 2018 09:43:50 +0900 Masaru Nomiya has written: > Hello, > I tried to compile gnuplot gnuplot-5.2.5-113.6.src.rpm, but it failed > with the very latest emacs. The error msassege is as follows; > [...] > Unknown commands: newread gpVersion includegraphics closein href error GpVersion hypersetup undefined chead rhead openin read fileGpVersion fi hyperlink ifeof ifxL parpic adjustarticle leftmark cfoot else lhead hypertarget > [...] > I tried to compile with the revision 8fffac14b19d375f774b835ea33ef8989300125d > emacs, I could compile gnuplot. > In this case, above message changed; > [...] > Unknown commands: fileGpVersion adjustarticle read hypersetup error rhead chead fi ifeof else hypertarget gpVersion href lhead openin GpVersion cfoot hyperlink closein parpic undefined ifxL newread leftmark includegraphics > [...] My problem was caused by; commit 3dd16a89bf410d77e9ddc41cbfbbd4b343928d6d Author: Juri Linkov Date: Sat Oct 27 23:27:54 2018 +0300 * lisp/isearch.el (lazy-highlight-buffer): New defcustom. (Bug#29360) (lazy-highlight-buffer-max-at-a-time): New defcustom. (isearch-lazy-highlight-buffer): New defvar. (isearch-lazy-highlight-new-loop): Don't check changes in window boundaries when lazy-highlight-buffer is non-nil. Move code that extends start/end to match whole string at point here from isearch-lazy-highlight-search. (isearch-lazy-highlight-search): Add args string and bound like in other search functions. Move calculation of bound to isearch-lazy-highlight-update. (isearch-lazy-highlight-match): New function with code extracted from isearch-lazy-highlight-update to be called also from isearch-lazy-highlight-buffer-update. (isearch-lazy-highlight-update): Reuse the values returned from window-group-start and window-group-end. At the end schedule the timer to call isearch-lazy-highlight-buffer-update when isearch-lazy-highlight-buffer is non-nil. (isearch-lazy-highlight-buffer-update): New function. That is , revert iserch.el to previous one, solved my problem. Thanks, --- Masaru Nomiya mail-to: nomiya @ galaxy.dti.ne.jp