From unknown Sat Sep 06 13:44:57 2025 X-Loop: help-debbugs@gnu.org Subject: bug#11647: 24.1; Document return value of load-source-file-function Resent-From: Christopher Schmidt Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 08 Jun 2012 02:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 11647 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 11647@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.13391208002449 (code B ref -1); Fri, 08 Jun 2012 02:00:02 +0000 Received: (at submit) by debbugs.gnu.org; 8 Jun 2012 02:00:00 +0000 Received: from localhost ([127.0.0.1]:34135 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ScoUZ-0000dQ-Rd for submit@debbugs.gnu.org; Thu, 07 Jun 2012 22:00:00 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48730) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ScoUE-0000cx-Nm for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:59:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScoRu-0008Qp-Rb for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:57:16 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:36371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRu-0008Qj-M7 for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:57:14 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRt-0008Dr-14 for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScoRq-0008QB-TM for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:12 -0400 Received: from ristopher.com ([146.185.21.93]:34128 helo=saturn.ch.ristopher.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRq-0008PS-FM for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:10 -0400 Received: by saturn.ch.ristopher.com (Postfix, from userid 0) id D9518202C8; Fri, 8 Jun 2012 02:57:05 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ch.ristopher.com; s=mail; t=1339120625; bh=SJpkxSQ6pJouPSs4HnoSApF14UD4+rJPWBfDQWAAbv0=; h=From:To:Subject:Message-ID:MIME-Version:Content-Type:Date; b=SFdrUJXu0XoBAhE2+adcB77C+VwdKmoM+B3y4DPa9ipI1lwzJ2Ooh8n6lq09nN0k8 kMUauSkriQT414H+v9TYy5TZSuIflYSYj8op/p+r0vdzTCNP7w8g+w6upOraZYUKJl QaWWEqetP8FH8z5hoKXg9h/aqmfPvqcuhbi3wMvs= From: Christopher Schmidt Message-ID: <8762b2bm6v@ch.ristopher.com> Mail-Followup-To: bug-gnu-emacs@gnu.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Fri, 8 Jun 2012 02:57:05 +0100 (BST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.9 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=load-source-file-function.diff === modified file 'src/ChangeLog' --- src/ChangeLog 2012-06-07 05:11:51 +0000 +++ src/ChangeLog 2012-06-08 01:42:27 +0000 @@ -1,3 +1,8 @@ +2012-06-08 Christopher Schmidt + + * lread.c (syms_of_lread): Document return value of + load-source-file-function. + 2012-06-07 Paul Eggert * doprnt.c (doprnt): Truncate multibyte char correctly. === modified file 'src/lread.c' --- src/lread.c 2012-05-30 03:59:42 +0000 +++ src/lread.c 2012-06-08 01:53:34 +0000 @@ -4508,7 +4508,8 @@ DEFVAR_LISP ("load-source-file-function", Vload_source_file_function, doc: /* Function called in `load' for loading an Emacs Lisp source file. -This function is for doing code conversion before reading the source file. +This function is for doing code conversion before reading the source +file. It should return t if the file exists and loads successfully. If nil, loading is done without any code conversion. Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where FULLNAME is the full name of FILE. --=-=-= Content-Type: text/plain Unfortunately I cannot get the trunk to build so the patch is untested. It's just a doc fix, though. Christopher --=-=-=-- From unknown Sat Sep 06 13:44:57 2025 X-Loop: help-debbugs@gnu.org Subject: bug#11647: 24.1; Document return value of load-source-file-function Resent-From: Christopher Schmidt Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 24 Jun 2012 15:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 11647 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 11647@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.134055177232243 (code B ref -1); Sun, 24 Jun 2012 15:30:02 +0000 Received: (at submit) by debbugs.gnu.org; 24 Jun 2012 15:29:32 +0000 Received: from localhost ([127.0.0.1]:55235 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Siokl-0008Nz-T5 for submit@debbugs.gnu.org; Sun, 24 Jun 2012 11:29:32 -0400 Received: from eggs.gnu.org ([208.118.235.92]:46643) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Siokk-0008Ns-1W for submit@debbugs.gnu.org; Sun, 24 Jun 2012 11:29:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sioh0-0005D4-IE for submit@debbugs.gnu.org; Sun, 24 Jun 2012 11:25:39 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:38353) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sioh0-0005Cv-CN for submit@debbugs.gnu.org; Sun, 24 Jun 2012 11:25:38 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Siogy-0006nz-N8 for bug-gnu-emacs@gnu.org; Sun, 24 Jun 2012 11:25:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Siogw-0005CR-K5 for bug-gnu-emacs@gnu.org; Sun, 24 Jun 2012 11:25:36 -0400 Received: from ristopher.com ([146.185.21.93]:39630 helo=saturn.ch.ristopher.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Siogw-0005CM-Bt for bug-gnu-emacs@gnu.org; Sun, 24 Jun 2012 11:25:34 -0400 Received: by saturn.ch.ristopher.com (Postfix, from userid 0) id C8B0E20B18; Sun, 24 Jun 2012 16:25:31 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ch.ristopher.com; s=mail; t=1340551531; bh=UcNIfktgVwXCzSbkHNBSD3FZA+tS7HH+61BaU8RRp5U=; h=From:To:Subject:In-Reply-To:References:Message-ID:MIME-Version: Content-Type:Date; b=lnzeqCf6VxI7+MxiGYZCtw/QD12JZgPxZc9M+VM1QG4agNHSnE5xNjOuQAxFx+sKu jhhZKZsQKqnJDAoIUA5nIJrW0RXta7upaO9cAAHQ29PhVt67nT6oRUjVX1d2VZeonz qV3n5nK8PQ36INCtkZcaaPM2JOc8iWgZWgET+AKo= From: Christopher Schmidt In-Reply-To: <8762b2bm6v@ch.ristopher.com> (Christopher Schmidt's message of "Fri, 8 Jun 2012 02:57:05 +0100 (BST)") References: <8762b2bm6v@ch.ristopher.com> Message-ID: <87d34on348@ch.ristopher.com> Mail-Followup-To: bug-gnu-emacs@gnu.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Sun, 24 Jun 2012 16:25:31 +0100 (BST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.9 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=load-source-file-function.diff === modified file 'src/ChangeLog' --- src/ChangeLog 2012-06-24 04:11:19 +0000 +++ src/ChangeLog 2012-06-24 15:24:00 +0000 @@ -1,3 +1,7 @@ +2012-06-24 Christopher Schmidt + + * lread.c (syms_of_lread): Doc fix (Bug#11647). + 2012-06-24 Paul Eggert Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000). === modified file 'src/lread.c' --- src/lread.c 2012-06-22 21:17:42 +0000 +++ src/lread.c 2012-06-24 15:22:30 +0000 @@ -4501,11 +4501,11 @@ DEFVAR_LISP ("load-source-file-function", Vload_source_file_function, doc: /* Function called in `load' for loading an Emacs Lisp source file. -This function is for doing code conversion before reading the source file. -If nil, loading is done without any code conversion. -Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where - FULLNAME is the full name of FILE. -See `load' for the meaning of the remaining arguments. */); +This function is for doing code conversion before reading the source +file. It should return t if the file exists and loads successfully. +If nil, loading is done without any code conversion. Arguments are +FULLNAME, FILE, NOERROR, NOMESSAGE, where FULLNAME is the full name of +FILE. See `load' for the meaning of the remaining arguments. */); Vload_source_file_function = Qnil; DEFVAR_BOOL ("load-force-doc-strings", load_force_doc_strings, --=-=-= Content-Type: text/plain OK to commit? Christopher --=-=-=-- From unknown Sat Sep 06 13:44:57 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.428 (Entity 5.428) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Christopher Schmidt Subject: bug#11647: closed (Re: bug#11647: 24.1; Document return value of load-source-file-function) Message-ID: References: <87lid9qllz.fsf@gnu.org> <8762b2bm6v@ch.ristopher.com> X-Gnu-PR-Message: they-closed 11647 X-Gnu-PR-Package: emacs Reply-To: 11647@debbugs.gnu.org Date: Sat, 08 Dec 2012 03:18:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1354936682-27789-1" This is a multi-part message in MIME format... ------------=_1354936682-27789-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #11647: 24.1; Document return value of load-source-file-function which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 11647@debbugs.gnu.org. --=20 11647: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D11647 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1354936682-27789-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 11647-done) by debbugs.gnu.org; 8 Dec 2012 03:17:09 +0000 Received: from localhost ([127.0.0.1]:59709 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ThAub-0007DA-Ef for submit@debbugs.gnu.org; Fri, 07 Dec 2012 22:17:09 -0500 Received: from mail-pb0-f44.google.com ([209.85.160.44]:41957) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ThAuZ-0007D2-No for 11647-done@debbugs.gnu.org; Fri, 07 Dec 2012 22:17:08 -0500 Received: by mail-pb0-f44.google.com with SMTP id uo1so747447pbc.3 for <11647-done@debbugs.gnu.org>; Fri, 07 Dec 2012 19:16:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=/7HWDulABwoc/g9ZVsFrpzR49BY7oZOjk4kZrMp7ceU=; b=x1JORxEtvppS9AxK80OY24f02Zj+hJI7+RsnRd8SXbpIqNFzArjeZtzSdPVRazU31V RNLqAAdOym3KQ06liQ8aHkD4s3QAdY4+s+zp8ZTU1Yij2BGJf7ZczDYRZ47Z3E4eE7Of rLS5y81b5W9vknyDHwYNFjkPPR5DVJQrnmwRXBCGkdTLCAkaY2q6ag4eh0/pYO/DfV6N DU+FiUiqYGb3xJhCd/QHB+xBtNOEBDAgSukO8rp4pVa6nSXwRjx/mzmn0mCmfCrwaHsW 11Cw6ijLl7h6QOmGUf+Xhj4JYurREKn5/H+sBEU9Cs9XAu1gRVeq5D8bZsQ5XAzBRfHY ZRnA== Received: by 10.66.75.162 with SMTP id d2mr18455244paw.27.1354936604988; Fri, 07 Dec 2012 19:16:44 -0800 (PST) Received: from ulysses (cm107.delta179.maxonline.com.sg. [59.189.179.107]) by mx.google.com with ESMTPS id tm5sm7688833pbc.64.2012.12.07.19.16.42 (version=SSLv3 cipher=OTHER); Fri, 07 Dec 2012 19:16:43 -0800 (PST) From: Chong Yidong To: 11647-done@debbugs.gnu.org Subject: Re: bug#11647: 24.1; Document return value of load-source-file-function References: <8762b2bm6v@ch.ristopher.com> <87d34on348@ch.ristopher.com> Date: Sat, 08 Dec 2012 11:16:40 +0800 In-Reply-To: <87d34on348@ch.ristopher.com> (Christopher Schmidt's message of "Sun, 24 Jun 2012 16:25:31 +0100 (BST)") Message-ID: <87lid9qllz.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 11647-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) > +2012-06-24 Christopher Schmidt > + > + * lread.c (syms_of_lread): Doc fix (Bug#11647). > + Sorry for the delay. I've now committed a tweaked version of this patch. ------------=_1354936682-27789-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 8 Jun 2012 02:00:00 +0000 Received: from localhost ([127.0.0.1]:34135 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ScoUZ-0000dQ-Rd for submit@debbugs.gnu.org; Thu, 07 Jun 2012 22:00:00 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48730) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ScoUE-0000cx-Nm for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:59:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScoRu-0008Qp-Rb for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:57:16 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:36371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRu-0008Qj-M7 for submit@debbugs.gnu.org; Thu, 07 Jun 2012 21:57:14 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53207) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRt-0008Dr-14 for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScoRq-0008QB-TM for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:12 -0400 Received: from ristopher.com ([146.185.21.93]:34128 helo=saturn.ch.ristopher.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScoRq-0008PS-FM for bug-gnu-emacs@gnu.org; Thu, 07 Jun 2012 21:57:10 -0400 Received: by saturn.ch.ristopher.com (Postfix, from userid 0) id D9518202C8; Fri, 8 Jun 2012 02:57:05 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=ch.ristopher.com; s=mail; t=1339120625; bh=SJpkxSQ6pJouPSs4HnoSApF14UD4+rJPWBfDQWAAbv0=; h=From:To:Subject:Message-ID:MIME-Version:Content-Type:Date; b=SFdrUJXu0XoBAhE2+adcB77C+VwdKmoM+B3y4DPa9ipI1lwzJ2Ooh8n6lq09nN0k8 kMUauSkriQT414H+v9TYy5TZSuIflYSYj8op/p+r0vdzTCNP7w8g+w6upOraZYUKJl QaWWEqetP8FH8z5hoKXg9h/aqmfPvqcuhbi3wMvs= From: Christopher Schmidt To: bug-gnu-emacs@gnu.org Subject: 24.1; Document return value of load-source-file-function Message-ID: <8762b2bm6v@ch.ristopher.com> Mail-Followup-To: bug-gnu-emacs@gnu.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Fri, 8 Jun 2012 02:57:05 +0100 (BST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=load-source-file-function.diff === modified file 'src/ChangeLog' --- src/ChangeLog 2012-06-07 05:11:51 +0000 +++ src/ChangeLog 2012-06-08 01:42:27 +0000 @@ -1,3 +1,8 @@ +2012-06-08 Christopher Schmidt + + * lread.c (syms_of_lread): Document return value of + load-source-file-function. + 2012-06-07 Paul Eggert * doprnt.c (doprnt): Truncate multibyte char correctly. === modified file 'src/lread.c' --- src/lread.c 2012-05-30 03:59:42 +0000 +++ src/lread.c 2012-06-08 01:53:34 +0000 @@ -4508,7 +4508,8 @@ DEFVAR_LISP ("load-source-file-function", Vload_source_file_function, doc: /* Function called in `load' for loading an Emacs Lisp source file. -This function is for doing code conversion before reading the source file. +This function is for doing code conversion before reading the source +file. It should return t if the file exists and loads successfully. If nil, loading is done without any code conversion. Arguments are FULLNAME, FILE, NOERROR, NOMESSAGE, where FULLNAME is the full name of FILE. --=-=-= Content-Type: text/plain Unfortunately I cannot get the trunk to build so the patch is untested. It's just a doc fix, though. Christopher --=-=-=-- ------------=_1354936682-27789-1--