From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/32335 Path: main.gmane.org!not-for-mail From: Neil Crellin Newsgroups: gmane.emacs.gnus.general Subject: Re: C-c C-a was mml-attach-file, now mail-interactive-insert-alias? Date: 05 Sep 2000 10:29:11 -0700 Organization: Wallaby Refuge Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035168623 19178 80.91.224.250 (21 Oct 2002 02:50:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:50:23 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 72351D051E for ; Tue, 5 Sep 2000 13:30:27 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id MAC23016; Tue, 5 Sep 2000 12:30:17 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 05 Sep 2000 12:28:58 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id MAA01287 for ; Tue, 5 Sep 2000 12:28:47 -0500 (CDT) Original-Received: from webtile.wallaby.cc (webtile.wallaby.cc [209.157.194.74]) by mailhost.sclp.com (Postfix) with ESMTP id 5ADFAD051E for ; Tue, 5 Sep 2000 13:29:13 -0400 (EDT) Original-Received: by webtile.wallaby.cc (Postfix, from userid 6077) id 2484662622; Tue, 5 Sep 2000 10:29:12 -0700 (PDT) Original-To: ding@gnus.org In-Reply-To: Karl Kleinpaste's message of "04 Sep 2000 15:34:18 -0400" Original-Lines: 30 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Bryce Canyon) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:32335 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:32335 --=-=-= Karl Kleinpaste writes: > This was discussed a couple months ago. It seems that a change to the > how, where, & when of (require 'mail-abbrevs) has induced this change > as an inadvertent side effect, because the message mode keymap has > already been set up when mail-abbrevs is subsequently sucked in, > changing the keymap. Or maybe it was the other way around; I forget. > Anyhow, "Someone With CVS Write Access" (i.e. not me) ought to take a > peek at the revision history again, or just dig out the previous > discussion on this subject, and apply the small patch to be found > somewhere in that discussion to make the keymap work the right way > again. > In the meantime, learn to love `M-m f'. Karl, thanks for jogging my memory and pointing me in the right direction. I don't have CVS write privs either, but I went back through the cvs revision history of message.el and can confirm that Dave Love's checking (5.118) deleted the lines in question. Below is essentially the same patch that torkel proposed when he looked into this when you and David Goldberg brought it up in July. Can someone with CVS write privs please commit it? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=message.el.patch Content-Description: revert Dave Love's excision of mail-abbrev require for Xemacsen Index: message.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/message.el,v retrieving revision 5.126 diff -u -r5.126 message.el --- message.el 2000/08/25 03:52:08 5.126 +++ message.el 2000/09/05 16:47:39 @@ -35,6 +35,9 @@ (defvar gnus-list-identifiers)) ; gnus-sum is required where necessary (require 'mailheader) (require 'nnheader) +(if (string-match "XEmacs\\|Lucid" emacs-version) + (require 'mail-abbrevs) + (require 'mailabbrev)) (require 'mail-parse) (require 'mml) --=-=-= -- Neil Crellin --=-=-=--