From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 03 11:44:10 2010 Received: (at submit) by debbugs.gnu.org; 3 Dec 2010 16:44:10 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1POYjx-0004CX-Rm for submit@debbugs.gnu.org; Fri, 03 Dec 2010 11:44:10 -0500 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1POYW4-0003sx-Bi for submit@debbugs.gnu.org; Fri, 03 Dec 2010 11:29:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POYbc-0001Wj-1v for submit@debbugs.gnu.org; Fri, 03 Dec 2010 11:35:33 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([199.232.76.165]:43723) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POYbb-0001WW-Tw for submit@debbugs.gnu.org; Fri, 03 Dec 2010 11:35:32 -0500 Received: from [140.186.70.92] (port=56885 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POYba-0002k1-KG for bug-gnu-emacs@gnu.org; Fri, 03 Dec 2010 11:35:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POYbZ-0001VM-9i for bug-gnu-emacs@gnu.org; Fri, 03 Dec 2010 11:35:30 -0500 Received: from cl28.gs01.gridserver.com ([64.13.192.37]:59983) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POYbZ-0001UP-1U for bug-gnu-emacs@gnu.org; Fri, 03 Dec 2010 11:35:29 -0500 Received: from mail-yx0-f169.google.com ([209.85.213.169]:53712) by cl28.gs01.gridserver.com with esmtpsa (TLS-1.0:RSA_ARCFOUR_MD5:16) (Exim 4.63) (envelope-from ) id 1POYbV-0005VO-8G for bug-gnu-emacs@gnu.org; Fri, 03 Dec 2010 08:35:26 -0800 Received: by yxl31 with SMTP id 31so19522257yxl.0 for ; Fri, 03 Dec 2010 08:35:23 -0800 (PST) Received: by 10.42.179.9 with SMTP id bo9mr508448icb.183.1291394123646; Fri, 03 Dec 2010 08:35:23 -0800 (PST) MIME-Version: 1.0 Received: by 10.42.164.199 with HTTP; Fri, 3 Dec 2010 08:35:03 -0800 (PST) From: Don March Date: Fri, 3 Dec 2010 11:35:03 -0500 Message-ID: Subject: 24.0.50; define-key error message for non-prefix M-[char] To: bug-gnu-emacs@gnu.org Content-Type: multipart/mixed; boundary=90e6ba6e86540148c704968420b5 X-Authenticated-User: 14129 don@ohspite.net 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, 2) X-Spam-Score: -6.6 (------) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 03 Dec 2010 11:44:08 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.6 (------) --90e6ba6e86540148c704968420b5 Content-Type: text/plain; charset=ISO-8859-1 Typing and evaluating the following code in the scratch buffer results in an (appropriate) error, but with an incorrect message: (setq new-kmap (make-sparse-keymap)) (define-key new-kmap [?a 27] 'command) (define-key new-kmap [?a ?\M-x] 'command) ;; Debugger entered--Lisp error: ;; (error "Key sequence a M-x starts with non-prefix key a") ;; (should be: ;; "Key sequence a M-x starts with non-prefix key a ESC") The code in keymap.c loops over the characters in the key sequence and says to report everything before the current character as the non-prefix key. But that misses the case when M-x is converted into [27 ?x] and it's the `27' part that causes the error. Please see the attached patch. A few other cases that show the problem: (setq a (make-sparse-keymap)) (define-key a [27] 'command) (define-key a [?\M-x] 'command) ;; Debugger entered--Lisp error: ;; (error "Key sequence M-x starts with non-prefix key ") ;; (should be: ;; "Key sequence M-x starts with non-prefix key ESC") (setq new-kmap (make-sparse-keymap)) (define-key new-kmap [?a 27] 'command) (define-key new-kmap [?a 27 ?x] 'command) ;; Debugger entered--Lisp error: ;; (error "Key sequence a M-x starts with non-prefix key a ESC") ;; (error text is correct) (setq new-kmap (make-sparse-keymap)) (define-key new-kmap [?a] 'command) (define-key new-kmap [?a ?\M-x] 'command) ;; Debugger entered--Lisp error: ;; (error "Key sequence a M-x starts with non-prefix key a") ;; (error text is correct) In GNU Emacs 24.0.50.1 (i686-pc-linux-gnu, GTK+ Version 2.22.0) of 2010-12-03 on lappy Windowing system distributor `The X.Org Foundation', version 11.0.10900000 --90e6ba6e86540148c704968420b5 Content-Type: application/octet-stream; name=define-key_diff Content-Disposition: attachment; filename=define-key_diff Content-Transfer-Encoding: base64 X-Attachment-Id: f_gh9ao6y70 PT09IG1vZGlmaWVkIGZpbGUgJ3NyYy9DaGFuZ2VMb2cnCioqKiBzcmMvQ2hhbmdlTG9nCTIwMTAt MTItMDIgMDk6MzM6NTcgKzAwMDAKLS0tIHNyYy9DaGFuZ2VMb2cJMjAxMC0xMi0wMyAxNjoxNTo0 MSArMDAwMAoqKioqKioqKioqKioqKioKKioqIDEsMyAqKioqCi0tLSAxLDggLS0tLQorIDIwMTAt MTItMDMgIERvbiBNYXJjaCAgPGRvbkBvaHNwaXRlLm5ldD4KKyAKKyAJKiBrZXltYXAuYyAoRmRl ZmluZV9rZXkpOiBGaXggbm9uLXByZWZpeCBrZXkgZXJyb3IgbWVzc2FnZSB3aGVuCisgCWxhc3Qg Y2hhcmFjdGVyIE0tW2NoYXJdIGlzIHRyYW5zbGF0ZWQgdG8gRVNDIFtjaGFyXS4KKyAKICAyMDEw LTEyLTAyICBKYW4gRGrDpHJ2ICA8amFuLmguZEBzd2lwbmV0LnNlPgogIAogIAkqIG5zbWVudS5t ICh1cGRhdGVfZnJhbWVfdG9vbF9iYXIpOiBSZW1vdmUgTlNMb2cgb24gaW52YWxpZCBpbWFnZS4K Cj09PSBtb2RpZmllZCBmaWxlICdzcmMva2V5bWFwLmMnCioqKiBzcmMva2V5bWFwLmMJMjAxMC0w OC0wOSAwOTozNToyMSArMDAwMAotLS0gc3JjL2tleW1hcC5jCTIwMTAtMTItMDMgMDg6MDU6MTEg KzAwMDAKKioqKioqKioqKioqKioqIGJpbmRpbmcgS0VZIHRvIERFRiBpcyBhZGRlZCBhdCB0aGUg ZnJvbnQKKioqIDEyMzQsMTI0NiAqKioqCiAgCiAgICAgICAga2V5bWFwID0gZ2V0X2tleW1hcCAo Y21kLCAwLCAxKTsKICAgICAgICBpZiAoIUNPTlNQIChrZXltYXApKQohIAkvKiBXZSBtdXN0IHVz ZSBGa2V5X2Rlc2NyaXB0aW9uIHJhdGhlciB0aGFuIGp1c3QgcGFzc2luZyBrZXkgdG8KISAJICAg ZXJyb3I7IGtleSBtaWdodCBiZSBhIHZlY3Rvciwgbm90IGEgc3RyaW5nLiAgKi8KISAJZXJyb3Ig KCJLZXkgc2VxdWVuY2UgJXMgc3RhcnRzIHdpdGggbm9uLXByZWZpeCBrZXkgJXMiLAohIAkgICAg ICAgU0RBVEEgKEZrZXlfZGVzY3JpcHRpb24gKGtleSwgUW5pbCkpLAohIAkgICAgICAgU0RBVEEg KEZrZXlfZGVzY3JpcHRpb24gKEZzdWJzdHJpbmcgKGtleSwgbWFrZV9udW1iZXIgKDApLAohIAkJ CQkJCSAgICBtYWtlX251bWJlciAoaWR4KSksCiEgCQkJCQlRbmlsKSkpOwogICAgICB9CiAgfQog IAotLS0gMTIzNCwxMjYwIC0tLS0KICAKICAgICAgICBrZXltYXAgPSBnZXRfa2V5bWFwIChjbWQs IDAsIDEpOwogICAgICAgIGlmICghQ09OU1AgKGtleW1hcCkpCiEgCXsKISAJICBjaGFyIHRyYWls aW5nX2VzY1s1XTsKISAJICBpZiAoYyA9PSBtZXRhX3ByZWZpeF9jaGFyICYmIG1ldGl6ZWQpCiEg CSAgICB7CiEgCSAgICAgIGlmIChpZHggPT0gMCkKISAJCXN0cmNweSh0cmFpbGluZ19lc2MsICJF U0MiKTsKISAJICAgICAgZWxzZQohIAkJc3RyY3B5KHRyYWlsaW5nX2VzYywgIiBFU0MiKTsKISAJ ICAgIH0KISAJICBlbHNlCiEgCSAgICAgIHN0cmNweSh0cmFpbGluZ19lc2MsICIiKTsgCiEgCiEg CSAgLyogV2UgbXVzdCB1c2UgRmtleV9kZXNjcmlwdGlvbiByYXRoZXIgdGhhbiBqdXN0IHBhc3Np bmcga2V5IHRvCiEgCSAgICAgZXJyb3I7IGtleSBtaWdodCBiZSBhIHZlY3Rvciwgbm90IGEgc3Ry aW5nLiAgKi8KISAJICBlcnJvciAoIktleSBzZXF1ZW5jZSAlcyBzdGFydHMgd2l0aCBub24tcHJl Zml4IGtleSAlcyVzIiwKISAJCSBTREFUQSAoRmtleV9kZXNjcmlwdGlvbiAoa2V5LCBRbmlsKSks CiEgCQkgU0RBVEEgKEZrZXlfZGVzY3JpcHRpb24gKEZzdWJzdHJpbmcgKGtleSwgbWFrZV9udW1i ZXIgKDApLAohIAkJCQkJCSAgICAgIG1ha2VfbnVtYmVyIChpZHgpKSwKISAJCQkJCSAgUW5pbCkp LAohIAkJIHRyYWlsaW5nX2VzYyk7CQkgCiEgCX0KICAgICAgfQogIH0KICAKCg== --90e6ba6e86540148c704968420b5-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 03 09:40:14 2011 Received: (at 7541) by debbugs.gnu.org; 3 Jul 2011 13:40:14 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdMuE-0007OQ-0B for submit@debbugs.gnu.org; Sun, 03 Jul 2011 09:40:14 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdMuA-0007O7-OP for 7541@debbugs.gnu.org; Sun, 03 Jul 2011 09:40:12 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=quimbies.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1QdMty-0000F1-GP; Sun, 03 Jul 2011 15:39:58 +0200 From: Lars Magne Ingebrigtsen To: Don March Subject: Re: 24.0.50; define-key error message for non-prefix M-[char] In-Reply-To: (Don March's message of "Fri, 3 Dec 2010 11:35:03 -0500") Date: Sun, 03 Jul 2011 15:39:45 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-Now-Playing: Siouxsie and the Banshees's _Kaleidoscope_: "Hybrid" X-Hashcash: 1:23:110703:don@ohspite.net::jkkVU9xzEGFaAhCb:015E1f X-Hashcash: 1:23:110703:7541@debbugs.gnu.org::flm9JBBGulZqFBFX:00000000000000000000000000000000000000001D+Dp MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1QdMty-0000F1-GP X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1310305198.58056@SpKGGZO3u63bJl54340dpQ X-Spam-Status: No X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: 7541 Cc: 7541@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.8 (--) Don March writes: > Typing and evaluating the following code in the scratch > buffer results in an (appropriate) error, but with an incorrect > message: > > (setq new-kmap (make-sparse-keymap)) > (define-key new-kmap [?a 27] 'command) > (define-key new-kmap [?a ?\M-x] 'command) > ;; Debugger entered--Lisp error: > ;; (error "Key sequence a M-x starts with non-prefix key a") > ;; (should be: > ;; "Key sequence a M-x starts with non-prefix key a ESC") > > The code in keymap.c loops over the characters in the key sequence and > says to report everything before the current character as the > non-prefix key. But that misses the case when M-x is converted into > [27 ?x] and it's the `27' part that causes the error. Your patch for this bug looks correct, but it's more than 10 lines long, so the FSF needs copyright assignment papers for the code. Do you have such paperwork on file with the FSF? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 03 12:24:34 2011 Received: (at 7541) by debbugs.gnu.org; 3 Jul 2011 16:24:34 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdPTG-0004UL-0t for submit@debbugs.gnu.org; Sun, 03 Jul 2011 12:24:34 -0400 Received: from cl38.gs01.gridserver.com ([64.13.192.47]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdPTC-0004U4-UV for 7541@debbugs.gnu.org; Sun, 03 Jul 2011 12:24:32 -0400 Received: from mail-iy0-f172.google.com ([209.85.210.172]:50782) by cl38.gs01.gridserver.com with esmtpsa (TLS-1.0:RSA_ARCFOUR_SHA:16) (Exim 4.69) (envelope-from ) id 1QdPT6-0001Qd-40 for 7541@debbugs.gnu.org; Sun, 03 Jul 2011 09:24:25 -0700 Received: by iye7 with SMTP id 7so4011731iye.3 for <7541@debbugs.gnu.org>; Sun, 03 Jul 2011 09:24:23 -0700 (PDT) Received: by 10.42.5.132 with SMTP id 4mr435015icw.361.1309710263043; Sun, 03 Jul 2011 09:24:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.42.174.3 with HTTP; Sun, 3 Jul 2011 09:24:03 -0700 (PDT) In-Reply-To: References: From: Don March Date: Sun, 3 Jul 2011 12:24:03 -0400 Message-ID: Subject: Re: 24.0.50; define-key error message for non-prefix M-[char] To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Authenticated-User: 14129 don@ohspite.net X-Spam-Status: "score=-1.4 tests=ALL_TRUSTED version=3.1.7" X-Spam-Level: X-Spam-Score: -3.9 (---) X-Debbugs-Envelope-To: 7541 Cc: 7541@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.7 (---) I just sent an email to assign@gnu.org. I'll report back when the process is complete. On Sun, Jul 3, 2011 at 9:39 AM, Lars Magne Ingebrigtsen wr= ote: > Don March writes: > >> Typing and evaluating the following code in the scratch >> buffer results in an (appropriate) error, but with an incorrect >> message: >> >> (setq new-kmap (make-sparse-keymap)) >> (define-key new-kmap [?a 27] 'command) >> (define-key new-kmap [?a ?\M-x] 'command) >> ;; Debugger entered--Lisp error: >> ;; =A0 (error "Key sequence a M-x starts with non-prefix key a") >> ;; (should be: >> ;; =A0 =A0 =A0 =A0 =A0"Key sequence a M-x starts with non-prefix key a E= SC") >> >> The code in keymap.c loops over the characters in the key sequence and >> says to report everything before the current character as the >> non-prefix key. =A0But that misses the case when M-x is converted into >> [27 ?x] and it's the `27' part that causes the error. > > Your patch for this bug looks correct, but it's more than 10 lines long, > so the FSF needs copyright assignment papers for the code. > > Do you have such paperwork on file with the FSF? > > -- > (domestic pets only, the antidote for overdose, milk.) > =A0bloggy blog http://lars.ingebrigtsen.no/ > From debbugs-submit-bounces@debbugs.gnu.org Sun Jul 03 12:30:40 2011 Received: (at 7541) by debbugs.gnu.org; 3 Jul 2011 16:30:40 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdPZ9-0005QP-RP for submit@debbugs.gnu.org; Sun, 03 Jul 2011 12:30:40 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QdPZ7-0005Fi-1s for 7541@debbugs.gnu.org; Sun, 03 Jul 2011 12:30:37 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=quimbies.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1QdPYv-0002vg-Ni; Sun, 03 Jul 2011 18:30:25 +0200 From: Lars Magne Ingebrigtsen To: Don March Subject: Re: 24.0.50; define-key error message for non-prefix M-[char] In-Reply-To: (Don March's message of "Sun, 3 Jul 2011 12:24:03 -0400") Date: Sun, 03 Jul 2011 18:30:21 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEVfVkbh4tX5+vP+/vvm 6d/Qz77b2sjCvqzt8er////+//6noY1nWjMvAAACbUlEQVQ4ja3TQU8TQRQA4IlGidnTNMvaKwOH bT3JotHeFhZTPIEyXRNOBXdEvWDMZmL2RCllONISw/QomtiehhhtyPw535sWjIk1MXHS0/v63szO e0Me6z+uLpkC+v9Ce/mr1p/OBr3xf7qtwbmDL7udoKKTw+OzNYz3yqq05CDW+uXr3s7OmzGcVPT9 JVUB2NU62T6tr9UnAL+56gqAbPrNuNNR++EyY0x1VLKaZe8BrJVcCEppAisWIuNS2hsAxShvQDzG uEoCIXgq7TcHGE+SumKhalMacJ4WlwiyQX0/abcYbhFTKq4gF1heYZyFuE3GHWzlwoc4JkSLrJ3E gRhDmlOor+YjWMPFUGGKdNDAfSFeg887h23aMU0/IGxMYDAB2CabgFItqKNBenBkOMkvgAysBBnq d8AMLBUxTyYxvYL6UYttmVr/xfBhydyitDmGhq/eXpTXvepn6xlrftwOxPhUm+qomMkM8SwhxJC7 JBshDFLfM6sQugi2UBw6KDb37r2zzTqjpSgKn3AJLB2YXOCqt1gU4V2JdeJdIpAZDi30fHfvCY3F K+NgzxtJ3hDSx4sPYwDOLYKxI5nzRkHhO7GDNBs3amA8J0RQaEscNF3Pr0FyI5qU+jAlIpUTIDBA siA4EtBw6JIsrmEE8B1TgozjWNk7DlwtAicTMCGwQ2HNFUAtkqNkKRayBAEuB2uZEcclsZAhNwEC 3Xv2YP9QzC4cQ3P7J9XhXNiHaR983Jg9Pn2+rbtlP3kKD6qsVkJ9AKAfHeh+taL1PGMV99R0pGsI Ux7nlPgU6P9zxl9hGF2vRcbmYVax9WzhJ0zj6nQ+dfOkAAAAAElFTkSuQmCC X-Now-Playing: Oval's _Oh_: "Kastell 4" X-Hashcash: 1:23:110703:don@ohspite.net::7E1yYSFoX+iFomb7:00GiEc X-Hashcash: 1:23:110703:7541@debbugs.gnu.org::IoWTH6X+KVJNeWII:00000000000000000000000000000000000000000UYXa MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1QdPYv-0002vg-Ni X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1310315425.89808@vN9EoesIkOSjm0VR3oz0eg X-Spam-Status: No X-Spam-Score: -2.8 (--) X-Debbugs-Envelope-To: 7541 Cc: 7541@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.8 (--) Don March writes: > I just sent an email to assign@gnu.org. I'll report back when the > process is complete. Great! -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 01 17:25:17 2011 Received: (at 7541) by debbugs.gnu.org; 1 Aug 2011 21:25:17 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QnzzB-0006rh-6D for submit@debbugs.gnu.org; Mon, 01 Aug 2011 17:25:17 -0400 Received: from cl27.gs01.gridserver.com ([64.13.192.36]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Qnzz7-0006rY-Uk for 7541@debbugs.gnu.org; Mon, 01 Aug 2011 17:25:15 -0400 Received: from mail-vx0-f172.google.com ([209.85.220.172]:39923) by cl27.gs01.gridserver.com with esmtpsa (TLS-1.0:RSA_ARCFOUR_SHA:16) (Exim 4.69) (envelope-from ) id 1Qnzyh-0005Pv-L6 for 7541@debbugs.gnu.org; Mon, 01 Aug 2011 14:24:48 -0700 Received: by vxi40 with SMTP id 40so4569143vxi.3 for <7541@debbugs.gnu.org>; Mon, 01 Aug 2011 14:24:46 -0700 (PDT) Received: by 10.52.71.106 with SMTP id t10mr5404950vdu.33.1312233886073; Mon, 01 Aug 2011 14:24:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.52.116.10 with HTTP; Mon, 1 Aug 2011 14:24:25 -0700 (PDT) In-Reply-To: References: From: Don March Date: Mon, 1 Aug 2011 17:24:25 -0400 Message-ID: Subject: Re: 24.0.50; define-key error message for non-prefix M-[char] To: Lars Magne Ingebrigtsen Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Authenticated-User: 14129 don@ohspite.net X-Spam-Status: "score=-1.4 tests=ALL_TRUSTED version=3.1.7" X-Spam-Level: X-Spam-Score: -3.6 (---) X-Debbugs-Envelope-To: 7541 Cc: 7541@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.5 (---) Okay, I just got an email saying my copyright assignment papers have been received and executed. On Sun, Jul 3, 2011 at 12:30 PM, Lars Magne Ingebrigtsen w= rote: > Don March writes: > >> I just sent an email to assign@gnu.org. =A0I'll report back when the >> process is complete. > > Great! > > -- > (domestic pets only, the antidote for overdose, milk.) > =A0bloggy blog http://lars.ingebrigtsen.no/ > From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 02 11:29:39 2011 Received: (at 7541) by debbugs.gnu.org; 2 Aug 2011 15:29:39 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QoGuY-00015E-Oh for submit@debbugs.gnu.org; Tue, 02 Aug 2011 11:29:39 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QoGuX-000151-Br for 7541@debbugs.gnu.org; Tue, 02 Aug 2011 11:29:38 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1QoGtx-0007eG-Qi; Tue, 02 Aug 2011 17:29:01 +0200 From: Lars Magne Ingebrigtsen To: Don March Subject: Re: 24.0.50; define-key error message for non-prefix M-[char] In-Reply-To: (Don March's message of "Mon, 1 Aug 2011 17:24:25 -0400") Date: Tue, 02 Aug 2011 17:28:20 +0200 Message-ID: References: User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAMFBMVEVzXTz39e/Io1DDvLHw 7+z9/fz9/vuek4OFdVOUg2X7+/j////+//7b29v+/v1TPxMj5kbSAAAA6klEQVQ4jWPI240V7GJA sLeiyDDsxgHoLLFvIC2ng8S+m/wfTLFJeNaam/ffxpTYUj6jvPgyL6bE5grT008fG0RjSIj37t69 d8JlawyJG9a7N0/iL8aUqIx+rKT/vxZDYk/54ial//9LMHVYMinp8/8vuY0hYT4DqIOhF1PC/bpl k/5/XkyJx3bCFZP4a19jSGwteb125gQrTJ/vXm567u0VbywS+y4bF6/ejUVi9+5zp3djl0ABw1/i NS4JrKL7cBu1D4fEvkSGaBSB17vf7XsHBFnCDH7v0kAga9WqhYIigoKOgiAg4nIDAH/BJ3mpJV9H AAAAAElFTkSuQmCC X-Now-Playing: Split's _Four Tet & Mala_: "Mala - Don't Let Me Go" MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1QoGtx-0007eG-Qi X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1312903741.99361@ydCh2if54ovs9XGrGtjerg X-Spam-Status: No X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: 7541 Cc: 7541@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.7 (--) Don March writes: > Okay, I just got an email saying my copyright assignment papers have > been received and executed. Thanks; I've now applied the patch. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 02 11:29:04 2011 Received: (at control) by debbugs.gnu.org; 2 Aug 2011 15:29:04 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QoGu0-00014M-9R for submit@debbugs.gnu.org; Tue, 02 Aug 2011 11:29:04 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QoGtx-000141-Rn for control@debbugs.gnu.org; Tue, 02 Aug 2011 11:29:02 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1QoGtO-0007dM-UV for control@debbugs.gnu.org; Tue, 02 Aug 2011 17:28:26 +0200 Date: Tue, 02 Aug 2011 17:28:04 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #7541 X-MailScanner-ID: 1QoGtO-0007dM-UV X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1312903707.01862@GvbzQwuHgF0GQCzYldp6sg X-Spam-Status: No X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 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.7 (--) tags 7541 fixed close 7541 24.1 From unknown Sat Sep 06 02:32:49 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 31 Aug 2011 11:24:05 +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