From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: Error: End of file during parsing Date: Tue, 27 Sep 2022 09:46:58 +0300 Message-ID: <83k05pjov1.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="3562"; mail-complaints-to="usenet@ciao.gmane.io" To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Tue Sep 27 09:53:08 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1od5Ou-0000kx-7s for geh-help-gnu-emacs@m.gmane-mx.org; Tue, 27 Sep 2022 09:53:08 +0200 Original-Received: from localhost ([::1]:36342 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1od5Ot-0006NL-4L for geh-help-gnu-emacs@m.gmane-mx.org; Tue, 27 Sep 2022 03:53:07 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:33914) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1od4N0-0001n3-3U for help-gnu-emacs@gnu.org; Tue, 27 Sep 2022 02:47:11 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:56446) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1od4Mz-0003gu-Jc for help-gnu-emacs@gnu.org; Tue, 27 Sep 2022 02:47:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=XLTpxPOPEw4wzOZUpnXaKG1Rw2fX5dgfRtPXwg4piRM=; b=gQ6hPtPDkt7H 5o6+BI+cFyGsUrhEeD/9+LJtvWA7/Xy+nNHV3Ofg9ONKoTPLSuP82xBcU04R10W+zHcg+2iZr2We2 3E4XxUIrfrjxHYjSze3QB/i5rM6YPppp0D5Wk9+x+ZWyjKBDLccpCt8e/HzvtxkXr/Swq97Tr6POm f3h7sZFlNw8FKHPJAb49gevVON155/itWzCFAiP4i83RvS4R2pJt+S22b4RYmW5d93tEBUe5El8jk vNcmUwBe1KSvCkJJkVz+clZmkHjOyJvn61hRvef3Dj1EkxvyG01ov4a20WRPvV1ap4xDK4d+wnMfH CItAy7Hn2Oj8J7Mm/qVuTQ==; Original-Received: from [87.69.77.57] (port=2710 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1od4My-0003oE-Jn for help-gnu-emacs@gnu.org; Tue, 27 Sep 2022 02:47:04 -0400 In-Reply-To: (message from Jean Louis on Tue, 27 Sep 2022 09:20:34 +0300) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:139644 Archived-At: > Date: Tue, 27 Sep 2022 09:20:34 +0300 > From: Jean Louis > > This condition is terrible: > > Compiling file /home/data1/protected/Programming/emacs-lisp/rcd-cf.el at Tue Sep 27 09:18:19 2022 > rcd-cf.el: Error: End of file during parsing > > If there is end of file during parsing, then why Emacs cannot tell me > at what line number it encountered error? It did tell you: the error is at EOF. That's where Emacs realized that there is an error. It cannot do that earlier. The problem is likely unbalanced parentheses somewhere.