From xemacs-m  Tue Feb 18 11:39:07 1997
Received: from steadfast.teradyne.com (steadfast.teradyne.com [131.101.1.200])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id LAA29069
	for <xemacs-beta@xemacs.org>; Tue, 18 Feb 1997 11:39:07 -0600 (CST)
Received: from kiki.icd.teradyne.com (kiki.icd.teradyne.com [131.101.1.30]) by steadfast.teradyne.com (8.7.1/8.7.1) with ESMTP id MAA13330 for <xemacs-beta@xemacs.org>; Tue, 18 Feb 1997 12:42:21 -0500 (EST)
Received: from spacely.icd.teradyne.com (spacely.icd.teradyne.com [131.101.10.9]) by kiki.icd.teradyne.com (8.7.1/8.7.1) with SMTP id MAA03617 for <xemacs-beta@xemacs.org>; Tue, 18 Feb 1997 12:36:13 -0500 (EST)
Received: from spacely by spacely.icd.teradyne.com (SMI-8.6/SMI-SVR4)
	id MAA26290; Tue, 18 Feb 1997 12:39:03 -0500
Message-Id: <199702181739.MAA26290@spacely.icd.teradyne.com>
X-Mailer: exmh version 2.0gamma 1/27/96
To: xemacs-beta@xemacs.org
reply-to: acs@acm.org
X-Attribution: Vin
Subject: mic-paren doesn't work in 20.1
Mime-Version: 1.0
Content-Type: multipart/mixed ;
	boundary="==_Exmh_4642885540"
Date: Tue, 18 Feb 1997 12:39:03 -0500
From: Vinnie Shelton  <shelton@icd.teradyne.com>

This is a multipart MIME message.

--==_Exmh_4642885540
Content-Type: text/plain; charset=us-ascii

mic-paren doesn't highlight for me in 20.1b1.  In particular, the following 
works for me in 19.15, but not in 20.1b1:

(require 'mic-paren)
(setq paren-sexp-mode t
      paren-face 'bold)

Does anyone else see this?

vin

BTW, I noticed the following minor typos while browsing the source
(both 19.15b94 and 20.1b1):


--==_Exmh_4642885540
Content-Type: application/octet-stream ; name="diff"
Content-Description: diff
Content-Disposition: attachment; filename="diff"

--- mic-paren.el.orig	Tue Feb 18 11:16:39 1997
+++ mic-paren.el	Tue Feb 18 12:29:32 1997
@@ -318,7 +318,7 @@
       (input-pending-p)			;[This might cause trouble since the
                                         ; function is unreliable]
       (condition-case paren-error
-	  (mic-paren-highligt)
+	  (mic-paren-highlight)
 	(error 
 	 (if (not (window-minibuffer-p (selected-window)))
 	     (message "mic-paren catched error (please report): %s"
@@ -326,14 +326,14 @@
 
 (defun mic-paren-command-idle-hook ()
   (condition-case paren-error
-      (mic-paren-highligt)
+      (mic-paren-highlight)
     (error 
      (if (not (window-minibuffer-p (selected-window)))
 	 (message "mic-paren catched error (please report): %s" 
 		  paren-error)))))
 
 
-(defun mic-paren-highligt ()
+(defun mic-paren-highlight ()
   "The main-function of mic-paren. Does all highlighting, dinging, messages,
 cleaning-up."
   ;; Remove any old highlighting
@@ -375,7 +375,7 @@
 				 (char-after open)))
 		   (visible (pos-visible-in-window-p open)))
 	       ;; If highlight is appropriate
-	       ;;    highligt
+	       ;;    highlight
 	       ;; else
 	       ;;    remove any old highlight
 	       (if (or visible paren-highlight-offscreen paren-sexp-mode)
@@ -460,7 +460,7 @@
 				 (char-after (1- close))))
 		   (visible (pos-visible-in-window-p close)))
 	       ;; If highlight is appropriate
-	       ;;    highligt
+	       ;;    highlight
 	       ;; else
 	       ;;    remove any old highlight
 	       (if (or visible paren-highlight-offscreen paren-sexp-mode)

--==_Exmh_4642885540--


