From xemacs-m  Tue Sep 16 21:43:32 1997
Received: from belle.matt.cs.purdue.edu (simmonmt@chw-il5-61.ix.netcom.com [198.211.138.125])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id VAA23543
	for <xemacs-beta@xemacs.org>; Tue, 16 Sep 1997 21:43:30 -0500 (CDT)
Received: (from simmonmt@localhost)
	by belle.matt.cs.purdue.edu (8.8.7/8.8.7) id VAA02688;
	Tue, 16 Sep 1997 21:43:33 -0500 (CDT)
To: xemacs-beta@xemacs.org
Subject: Patch to a patch for calc-2.02f
Reply-To: simmonmt@acm.org
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: multipart/mixed;
 boundary="Multipart_Tue_Sep_16_21:43:32_1997-1"
Content-Transfer-Encoding: 7bit
From: Matt Simmons <simmonmt@acm.org>
Date: 16 Sep 1997 21:43:32 -0500
Message-ID: <yfqiuw07j8r.fsf@acm.org>
Lines: 51
X-Mailer: Quassia Gnus v0.5/XEmacs 20.3(beta20) - "Tirana"

--Multipart_Tue_Sep_16_21:43:32_1997-1
Content-Type: text/plain; charset=US-ASCII

The xemacs patch (calc-xemacs.patch) in /pub/beta/contrib has a bug in 
it.  It doesn't escape # in the global-map enough.  Since the patch is 
short, I'll include it and the new version.  Can somebody replace the
file in ...contrib?

Matt

-- 
     Matt Simmons  -  simmonmt@acm.org  -  http://www.netcom.com/~simmonmt
       Experience is that marvelous thing that enables you to recognize a
		mistake when you make it again.  -- F. P. Jones


--Multipart_Tue_Sep_16_21:43:32_1997-1
Content-Type: application/octet-stream; type=patch
Content-Disposition: attachment; filename="calc-xemacs.patch"
Content-Transfer-Encoding: 7bit

--- calc-maint.el.orig	Sun Dec 15 23:50:47 1996
+++ calc-maint.el	Wed Jan  8 16:05:10 1997
@@ -455,7 +455,7 @@
 \(autoload 'calc-grab-region	   \"calc\" \"Grab region of Calc data\" t)
 \(autoload 'calc-grab-rectangle	   \"calc\" \"Grab rectangle of data\" t)
 \(setq load-path (nconc load-path (list \"" (directory-file-name home) "\")))
-\(global-set-key \"\\e#\" 'calc-dispatch)
+\(define-key global-map [(meta \#)] 'calc-dispatch)
 ;;; End of Calc autoloads.\n")
   (let ((trim-versions-without-asking t))
     (save-buffer))

--Multipart_Tue_Sep_16_21:43:32_1997-1
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="calc-xemacs.patch.new"
Content-Transfer-Encoding: 7bit

--- calc-maint.el.orig	Sun Dec 15 23:50:47 1996
+++ calc-maint.el	Wed Jan  8 16:05:10 1997
@@ -455,7 +455,7 @@
 \(autoload 'calc-grab-region	   \"calc\" \"Grab region of Calc data\" t)
 \(autoload 'calc-grab-rectangle	   \"calc\" \"Grab rectangle of data\" t)
 \(setq load-path (nconc load-path (list \"" (directory-file-name home) "\")))
-\(global-set-key \"\\e#\" 'calc-dispatch)
+\(define-key global-map [(meta \\#)] 'calc-dispatch)
 ;;; End of Calc autoloads.\n")
   (let ((trim-versions-without-asking t))
     (save-buffer))

--Multipart_Tue_Sep_16_21:43:32_1997-1--

