From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 26 11:00:35 2012 Received: (at submit) by debbugs.gnu.org; 26 Oct 2012 15:00:35 +0000 Received: from localhost ([127.0.0.1]:34870 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRlOl-0002G9-DM for submit@debbugs.gnu.org; Fri, 26 Oct 2012 11:00:35 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38198) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRlOj-0002G2-GB for submit@debbugs.gnu.org; Fri, 26 Oct 2012 11:00:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TRlMd-0002k1-0v for submit@debbugs.gnu.org; Fri, 26 Oct 2012 10:58:23 -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,FREEMAIL_FROM, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:41717) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRlMc-0002jx-UA for submit@debbugs.gnu.org; Fri, 26 Oct 2012 10:58:22 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37458) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRlMc-0007wk-1p for bug-gnu-emacs@gnu.org; Fri, 26 Oct 2012 10:58:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TRlMR-0002ho-FJ for bug-gnu-emacs@gnu.org; Fri, 26 Oct 2012 10:58:21 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:43087) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TRlMR-0002he-82 for bug-gnu-emacs@gnu.org; Fri, 26 Oct 2012 10:58:11 -0400 Received: by mail-wg0-f49.google.com with SMTP id gg4so1598611wgb.30 for ; Fri, 26 Oct 2012 07:58:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:user-agent:mime-version :content-type; bh=y+cm1LwJORgxlAQ2nPZuq+SaG6Z27hICUN/4memAXbI=; b=iieKI+4lOJ79Qzv+sCBtxlRpNZG5KLitiexcU1xAt79V7TVfD11aYuvDDhk92YnVGN Bbs0ft6ceS7JMshcYou+1N3FlKhxQu8LBbkW2xPwLhmUojt/O+f/8D4UwUSs92HPmyoq X1tNb/dE5s/ShhO5BZHTGiMMt+k11JMVk62dnKJ1qSbHXjuJqoOTPHeuAgATUR0TNiD0 Z55rHFO3k1K+1WMWAmNzFK4qTL+L9efGEbGexAngPq6jKapWO034lqSkFoNsqPV1/xk6 YCDtLYc+R29BmCSjnxweTQ+smQBf1LM1hFuU1+yuJA6qFP7Dc3hgtRbjaudVP+gOXIcb FFJg== Received: by 10.180.8.41 with SMTP id o9mr5401985wia.3.1351263489756; Fri, 26 Oct 2012 07:58:09 -0700 (PDT) Received: from sigma ([194.214.160.170]) by mx.google.com with ESMTPS id gm7sm3319307wib.10.2012.10.26.07.58.08 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 26 Oct 2012 07:58:09 -0700 (PDT) From: Antoine Levitt To: bug-gnu-emacs@gnu.org, Stefan Monnier Subject: 24.2.50; ERC fix broke modules after require Date: Fri, 26 Oct 2012 16:58:07 +0200 Message-ID: <87625xe0w0.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -3.4 (---) 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: -3.4 (---) Hi, The following code stopped working (ie truncate stopped being activated) after a series of commits by Stefan Monnier emacs -Q (require 'erc) (setq erc-modules '(truncate)) (erc-update-modules) (erc :server "irc.freenode.net") This worked fine before Author: Stefan Monnier Date: Mon Oct 15 12:49:57 2012 -0400 * lisp/erc/erc.el (erc-log): Make it into a defsubst. (erc-with-server-buffer, define-erc-module, erc-with-buffer) (erc-with-all-buffers-of-server): Use `declare'. * lisp/erc/erc-backend.el (erc-log): Adjust autoload accordingly. After this, erc was broken until Author: Stefan Monnier Date: Thu Oct 18 11:51:28 2012 -0400 * lisp/erc/erc-backend.el: Require `erc' instead of autoloading its macros. And after this commit, the sample code above stopped working. Antoine From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 26 11:23:46 2012 Received: (at 12740) by debbugs.gnu.org; 26 Oct 2012 15:23:46 +0000 Received: from localhost ([127.0.0.1]:34895 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRllC-0003dH-Bj for submit@debbugs.gnu.org; Fri, 26 Oct 2012 11:23:46 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:48961) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRllA-0003dA-S6 for 12740@debbugs.gnu.org; Fri, 26 Oct 2012 11:23:45 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAG6Zu0/O+LFW/2dsb2JhbABEtBGBCIIVAQEEAVYjBQsLNBIUGA0kiBwFugmQRAOjM4FYgwU X-IronPort-AV: E=Sophos;i="4.75,637,1330923600"; d="scan'208";a="202915857" Received: from 206-248-177-86.dsl.teksavvy.com (HELO pastel.home) ([206.248.177.86]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 26 Oct 2012 11:21:34 -0400 Received: by pastel.home (Postfix, from userid 20848) id 006D359347; Fri, 26 Oct 2012 11:21:33 -0400 (EDT) From: Stefan Monnier To: Antoine Levitt Subject: Re: 24.2.50; ERC fix broke modules after require Message-ID: References: <87625xe0w0.fsf@gmail.com> Date: Fri, 26 Oct 2012 11:21:33 -0400 In-Reply-To: <87625xe0w0.fsf@gmail.com> (Antoine Levitt's message of "Fri, 26 Oct 2012 16:58:07 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: 0.8 (/) > emacs -Q > (require 'erc) > (setq erc-modules '(truncate)) > (erc-update-modules) > (erc :server "irc.freenode.net") > This worked fine before I don't know what "worked" means precisely, but I tried your above recipe and "it worked" in the sense that it did something which didn't look like an error. Stefan From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 26 11:54:56 2012 Received: (at 12740) by debbugs.gnu.org; 26 Oct 2012 15:54:56 +0000 Received: from localhost ([127.0.0.1]:34925 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRmFM-0005BP-3P for submit@debbugs.gnu.org; Fri, 26 Oct 2012 11:54:56 -0400 Received: from mail-wi0-f174.google.com ([209.85.212.174]:55944) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRmFJ-0005BI-Fn for 12740@debbugs.gnu.org; Fri, 26 Oct 2012 11:54:55 -0400 Received: by mail-wi0-f174.google.com with SMTP id hq7so471414wib.15 for <12740@debbugs.gnu.org>; Fri, 26 Oct 2012 08:52:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=PYXSAbARlXgM9jXzzZG+OKMpWwGpCWaZ8ioYtccLYtE=; b=JKJPD7FmoaEE+NqU5eTfL1L4knFWeXtFImLwBe9VMGFJf5bXWaMOTo+bX9NsBeyJyB qk+3gDriaUF/vKh8LrLcAY14fwtpXX1j+O33KxIvjB/ZX4uYRyFoQaZP3wGoruxu4mQV jVchZj4FOrNsSOp23KBOOCevlNknPqTckiw7DsDICxAObbnEM/cbynlrdq9JjtRMe7FB quDdBiplcjd9JZ2PUvZqyMhgQaNQRW6gKHRAzIEuTn4aj8H9BjffAx3EHMN9D6q4qgCG odWpB0E5najQDsJXAIzGfI1eMHJ3EELpKDds+iQ3R9OdzhPw+iLPo0DewtL+YFM/bCJC LHKQ== Received: by 10.180.99.194 with SMTP id es2mr5572568wib.15.1351266762998; Fri, 26 Oct 2012 08:52:42 -0700 (PDT) Received: from sigma ([194.214.160.170]) by mx.google.com with ESMTPS id cn6sm3524780wib.9.2012.10.26.08.52.41 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 26 Oct 2012 08:52:42 -0700 (PDT) From: Antoine Levitt To: Stefan Monnier Subject: Re: 24.2.50; ERC fix broke modules after require References: <87625xe0w0.fsf@gmail.com> Date: Fri, 26 Oct 2012 17:52:40 +0200 In-Reply-To: (Stefan Monnier's message of "Fri, 26 Oct 2012 11:21:33 -0400") Message-ID: <87objp9qnr.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: 0.1 (/) --=-=-= Content-Type: text/plain 10/26/2012 17:21, Stefan Monnier >> emacs -Q >> (require 'erc) >> (setq erc-modules '(truncate)) >> (erc-update-modules) >> (erc :server "irc.freenode.net") >> This worked fine before > > I don't know what "worked" means precisely, but I tried your above > recipe and "it worked" in the sense that it did something which didn't > look like an error. Sorry if this bug report is confused. I've tried to reduce the original bug (which has weird effects on my configuration) to a simple test case. The bug, which I had not described and you could not guess, was that lines were filled. My bad. Please discard my original bug report and consider the following: (require 'erc) (setq erc-modules '()) (erc-update-modules) used to disable buffer filling (try it on a large window). It did so before your commits, not after. You might argue that this is the intended behaviour, because erc-update-modules says that it only enables modules, not disable them (in which case, to disable modules, is one supposed to set erc-modules before requiring erc ? I liked the old way better). I also attach a more involved example of a bug that appeared with your commits, and has nothing to do with erc-modules (I think). I was hoping the fix for the simpler issue would also fix the more involved one, which is why I didn't report it in the first place, but here it is anywyay. The code is supposed to colour the nicks of people (here, all in yellow). The bug results from an interaction with erc-hide-timestamps, which didn't occur before your commits. Sorry again. --=-=-= Content-Type: application/emacs-lisp Content-Disposition: attachment; filename=test.el Content-Transfer-Encoding: quoted-printable ;; (require 'erc) ;; (setq erc-modules '()) ;; (erc-update-modules) (setq erc-modules '(autojoin button completion irccontrols list match menu move-to-prompt netsplit networks noncommands readonly ring scrolltobottom stamp track autoaway truncate)) (setq=20=20=20=20=20=20=20 word-wrap t erc-timestamp-only-if-changed-flag nil erc-timestamp-format "%D %T " erc-hide-timestamps t erc-pcomplete-order-nickname-completions t erc-insert-timestamp-function 'erc-insert-timestamp-left) (fset 'yes-or-no-p 'y-or-n-p) (set-frame-parameter nil 'fullscreen 'fullboth) (defun erc-put-colors-on-line () "Colorise a message. First, we colorize the sender, then we go through the message looking for nicks to colorize. " ;; makes word boundaries work (with-syntax-table erc-button-syntax-table (save-excursion (goto-char (point-min)) ;; colorise the nick of the person talking, unless this is an outgoin= g message, in which case ;; something else already does the coloring and we don't want to inte= rfere ;; erc-send-this is only t in send-modify-hook, see the lambdas below (unless erc-is-sending (if (looking-at "<\\([^>]*\\)>") (let ((nick (match-string 1))) (put-text-property (match-beginning 1) (match-end 1) 'face (cons 'foreground-color (erc-get-color-for-nick nick)))))) ;; go through the message, find nicks and colorise them. ;; From erc-button with modifications ;; ignore the author, already taken care of by the code above (if (looking-at "<\\([^>]*\\)>")(forward-word)) (while (forward-word 1) (setq bounds (bounds-of-thing-at-point 'word)) (when bounds (setq word (buffer-substring-no-properties (car bounds) (cdr bounds))) (when (or (and (erc-server-buffer-p) (erc-get-server-user word)) (and erc-channel-users (erc-get-channel-user word))) (let ((nick ( erc-server-user-nickname (if (erc-server-buffer-p) (erc-get-server-user word) (car (erc-get-channel-user word)))))) (put-text-property (car bounds) (cdr bounds) 'face (list (cons 'foreground-color (erc-get-color-for-nick nick)) :weight 'bold))))))))) ;;put the hooks at the end (require 'erc) (add-hook 'erc-insert-modify-hook '(lambda () (let ((erc-is-sending nil)) (= erc-put-colors-on-line))) 'attheend) (add-hook 'erc-send-modify-hook '(lambda () (let ((erc-is-sending t)) (erc-= put-colors-on-line))) 'attheend) (defun erc-get-color-for-nick (nick) "Gets a color for NICK. If NICK is specified in erc-nick-color-alist, use= it, else hash the nick and get a color from that" "yellow") ;; (erc :server "localhost" :nick "Test") --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 26 14:32:20 2012 Received: (at 12740) by debbugs.gnu.org; 26 Oct 2012 18:32:20 +0000 Received: from localhost ([127.0.0.1]:35103 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRohg-0001UT-8R for submit@debbugs.gnu.org; Fri, 26 Oct 2012 14:32:20 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:49211) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRohc-0001UK-8p for 12740@debbugs.gnu.org; Fri, 26 Oct 2012 14:32:17 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AiYGAG6Zu0/O+LFW/2dsb2JhbABEr1pug0mBCIIWAQVWIxALNBIUGA0kiCG6CZBEA6MzgViDBQ X-IronPort-AV: E=Sophos;i="4.75,637,1330923600"; d="scan'208";a="202930175" Received: from 206-248-177-86.dsl.teksavvy.com (HELO pastel.home) ([206.248.177.86]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 26 Oct 2012 14:30:05 -0400 Received: by pastel.home (Postfix, from userid 20848) id A30635940A; Fri, 26 Oct 2012 14:30:04 -0400 (EDT) From: Stefan Monnier To: Antoine Levitt Subject: Re: 24.2.50; ERC fix broke modules after require Message-ID: References: <87625xe0w0.fsf@gmail.com> <87objp9qnr.fsf@gmail.com> Date: Fri, 26 Oct 2012 14:30:04 -0400 In-Reply-To: <87objp9qnr.fsf@gmail.com> (Antoine Levitt's message of "Fri, 26 Oct 2012 17:52:40 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: 0.8 (/) A shot in the dark: does the patch below fix your problems? Stefan === modified file 'lisp/erc/erc-backend.el' --- lisp/erc/erc-backend.el 2012-10-18 15:51:28 +0000 +++ lisp/erc/erc-backend.el 2012-10-26 18:28:14 +0000 @@ -102,8 +102,7 @@ ;; There's a fairly strong mutual dependency between erc.el and erc-backend.el. ;; Luckily, erc.el does not need erc-backend.el for macroexpansion whereas the ;; reverse is true: -(provide 'erc-backend) -(require 'erc) +(eval-when-compile (provide 'erc-backend) (require 'erc)) ;;;; Variables and options From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 26 14:49:38 2012 Received: (at 12740) by debbugs.gnu.org; 26 Oct 2012 18:49:38 +0000 Received: from localhost ([127.0.0.1]:35151 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRoyP-0001un-MP for submit@debbugs.gnu.org; Fri, 26 Oct 2012 14:49:37 -0400 Received: from mail-wg0-f46.google.com ([74.125.82.46]:45819) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TRoyN-0001ug-V4 for 12740@debbugs.gnu.org; Fri, 26 Oct 2012 14:49:36 -0400 Received: by mail-wg0-f46.google.com with SMTP id dt12so2143691wgb.15 for <12740@debbugs.gnu.org>; Fri, 26 Oct 2012 11:47:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=pDcdfV1oB6PV2WF2l9c663TqmJ74kP/5bGaW9cQRc84=; b=OlXyDgYXaEaab4hkeJzZhxEzhRPBtIi4JnVKlo4chLOH0RGJ6y6GqCLJFxTd3nRNOV /UqpB7o4Pd5addQHdn8CRtOYPjuyPNF8YRkpW0uJ1R9lcpW44O4tH4RhThbw8/A6ptmd 35YxlDv+pbJcddHp7J0+iCIF9t71Oddg2lctSDFEWCSyRY9C+UjKYyhPpZkLUuhZDIU2 3tOU0cebM1r9VCEZsYWphUBB1eXlF/uYhEOoituOC1xzL9IMMT1wLST3SVdAdaJygbsz 7dql73BrCoa2K2E44GrCdafMexLihOLVXUIpz0tE3UuJyE6IC18CNTtGRfZFWOU8nO+t HcQg== Received: by 10.216.140.73 with SMTP id d51mr13645081wej.217.1351277244601; Fri, 26 Oct 2012 11:47:24 -0700 (PDT) Received: from sigma (ney92-7-78-233-218-202.fbx.proxad.net. [78.233.218.202]) by mx.google.com with ESMTPS id f1sm469316wiy.2.2012.10.26.11.47.23 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 26 Oct 2012 11:47:24 -0700 (PDT) From: Antoine Levitt To: Stefan Monnier Subject: Re: 24.2.50; ERC fix broke modules after require References: <87625xe0w0.fsf@gmail.com> <87objp9qnr.fsf@gmail.com> Date: Fri, 26 Oct 2012 20:47:22 +0200 In-Reply-To: (Stefan Monnier's message of "Fri, 26 Oct 2012 14:30:04 -0400") Message-ID: <871uglxe85.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: -0.7 (/) 10/26/2012 20:30, Stefan Monnier > A shot in the dark: does the patch below fix your problems? It does. From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 28 11:37:28 2012 Received: (at 12740) by debbugs.gnu.org; 28 Oct 2012 15:37:28 +0000 Received: from localhost ([127.0.0.1]:36749 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSUvX-00086C-In for submit@debbugs.gnu.org; Sun, 28 Oct 2012 11:37:28 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:63083) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSUvV-000865-MO for 12740@debbugs.gnu.org; Sun, 28 Oct 2012 11:37:25 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAG6Zu0/O+LET/2dsb2JhbABEtBGBCIIRBAEBBAFWIxALNBIUGA0khVwHgigRBboJkEQDozOBWIMF X-IronPort-AV: E=Sophos;i="4.75,637,1330923600"; d="scan'208";a="203021468" Received: from 206-248-177-19.dsl.teksavvy.com (HELO pastel.home) ([206.248.177.19]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 28 Oct 2012 11:35:04 -0400 Received: by pastel.home (Postfix, from userid 20848) id 4B03A59415; Sun, 28 Oct 2012 11:35:03 -0400 (EDT) From: Stefan Monnier To: Antoine Levitt Subject: Re: 24.2.50; ERC fix broke modules after require Message-ID: References: <87625xe0w0.fsf@gmail.com> <87objp9qnr.fsf@gmail.com> <871uglxe85.fsf@gmail.com> Date: Sun, 28 Oct 2012 11:35:03 -0400 In-Reply-To: <871uglxe85.fsf@gmail.com> (Antoine Levitt's message of "Fri, 26 Oct 2012 20:47:22 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: 0.8 (/) >> A shot in the dark: does the patch below fix your problems? > It does. Thanks, installed, Stefan From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 28 11:37:47 2012 Received: (at control) by debbugs.gnu.org; 28 Oct 2012 15:37:47 +0000 Received: from localhost ([127.0.0.1]:36752 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSUvr-00086h-Aq for submit@debbugs.gnu.org; Sun, 28 Oct 2012 11:37:47 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.182]:43931) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSUvp-00086Z-LX for control@debbugs.gnu.org; Sun, 28 Oct 2012 11:37:45 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAG6Zu0/O+LET/2dsb2JhbABEtBGBCIIRBQEFGT0zCzQSFBgNhgAHgigWugmNJoMeA6MzgViDBQ X-IronPort-AV: E=Sophos;i="4.75,637,1330923600"; d="scan'208";a="203021490" Received: from 206-248-177-19.dsl.teksavvy.com (HELO pastel.home) ([206.248.177.19]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 28 Oct 2012 11:35:24 -0400 Received: by pastel.home (Postfix, from userid 20848) id 9EB5859415; Sun, 28 Oct 2012 11:35:23 -0400 (EDT) From: Stefan Monnier To: control@debbugs.gnu.org Subject: Re: 24.2.50; ERC fix broke modules after require Message-ID: References: <87625xe0w0.fsf@gmail.com> <87objp9qnr.fsf@gmail.com> <871uglxe85.fsf@gmail.com> Date: Sun, 28 Oct 2012 11:35:23 -0400 In-Reply-To: <871uglxe85.fsf@gmail.com> (Antoine Levitt's message of "Fri, 26 Oct 2012 20:47:22 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.8 (/) X-Debbugs-Envelope-To: control 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: 0.8 (/) close 12740 thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 28 11:43:49 2012 Received: (at 12740) by debbugs.gnu.org; 28 Oct 2012 15:43:49 +0000 Received: from localhost ([127.0.0.1]:36759 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSV1g-0008F5-VV for submit@debbugs.gnu.org; Sun, 28 Oct 2012 11:43:49 -0400 Received: from mail-lb0-f172.google.com ([209.85.217.172]:46612) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TSV1e-0008Ex-Sm for 12740@debbugs.gnu.org; Sun, 28 Oct 2012 11:43:48 -0400 Received: by mail-lb0-f172.google.com with SMTP id k13so2815258lbo.3 for <12740@debbugs.gnu.org>; Sun, 28 Oct 2012 08:41:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=4BAHTJJ38dTDmkWz3XMdUvuY8Uqiv3IZkbu7F4xhNF0=; b=rEsvK19S1QYQkQxCM/5u7tnG9xRNjBRgOIoiBwmnxHsPwJevsYMJoqwh5XEZVyBstT 8otLW0A9OxOLhWBXlO3RuEITtFuNXfA3ptrkhaahX37uy1C2OeGwmbeqIGRV+OnT4utU yHVIBGvOpl6cbjZ5cP22voy1S0r+eDaLU/rMMJYWrEbSjpakWQKer6Jx80J9yOy1ehPq LBB+bppKv0QniMeLgAjACrQceWiKmAgGmbYktZW6LR+785G4d2/W1BDMGjSFOwyUCpa9 A8SYXOuvKovcGDKzBmOSznH3XIDotvLuQyrsfsxa3DhDdsHIpKqBoaSfM/EJXPcxnCdt opHA== MIME-Version: 1.0 Received: by 10.152.135.41 with SMTP id pp9mr25279755lab.7.1351438884719; Sun, 28 Oct 2012 08:41:24 -0700 (PDT) Received: by 10.114.17.234 with HTTP; Sun, 28 Oct 2012 08:41:24 -0700 (PDT) Received: by 10.114.17.234 with HTTP; Sun, 28 Oct 2012 08:41:24 -0700 (PDT) In-Reply-To: References: <87625xe0w0.fsf@gmail.com> <87objp9qnr.fsf@gmail.com> <871uglxe85.fsf@gmail.com> Date: Sun, 28 Oct 2012 16:41:24 +0100 Message-ID: Subject: Re: 24.2.50; ERC fix broke modules after require From: Antoine Levitt To: Stefan Monnier Content-Type: multipart/alternative; boundary=f46d044270caa8cd2904cd2062d2 X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12740 Cc: 12740@debbugs.gnu.org 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: 0.1 (/) --f46d044270caa8cd2904cd2062d2 Content-Type: text/plain; charset=ISO-8859-1 Nice, thanks! On Oct 28, 2012 4:35 PM, "Stefan Monnier" wrote: > >> A shot in the dark: does the patch below fix your problems? > > It does. > > Thanks, installed, > > > Stefan > --f46d044270caa8cd2904cd2062d2 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

Nice, thanks!

On Oct 28, 2012 4:35 PM, "Stefan Monnier&qu= ot; <monnier@iro.umontreal.c= a> wrote:
>> A shot in the dark: does the patch below fix your problems?
> It does.

Thanks, installed,


=A0 =A0 =A0 =A0 Stefan
--f46d044270caa8cd2904cd2062d2-- From unknown Tue Jun 17 01:46:27 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 26 Nov 2012 12:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator