From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Herbert Euler" Newsgroups: gmane.emacs.devel Subject: RE: Not appropriate message for mismatched parens Date: Wed, 25 Apr 2007 19:21:45 +0800 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-Trace: sea.gmane.org 1177500121 15484 80.91.229.12 (25 Apr 2007 11:22:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 25 Apr 2007 11:22:01 +0000 (UTC) To: herberteuler@hotmail.com, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Apr 25 13:22:00 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HgfZN-0005Ec-JA for ged-emacs-devel@m.gmane.org; Wed, 25 Apr 2007 13:21:57 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hgfez-0002SK-D7 for ged-emacs-devel@m.gmane.org; Wed, 25 Apr 2007 07:27:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hgfew-0002RQ-AV for emacs-devel@gnu.org; Wed, 25 Apr 2007 07:27:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hgfet-0002RE-RV for emacs-devel@gnu.org; Wed, 25 Apr 2007 07:27:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hgfet-0002RB-MM for emacs-devel@gnu.org; Wed, 25 Apr 2007 07:27:39 -0400 Original-Received: from bay0-omc1-s25.bay0.hotmail.com ([65.54.246.97]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HgfZG-00035m-Ra for emacs-devel@gnu.org; Wed, 25 Apr 2007 07:21:51 -0400 Original-Received: from hotmail.com ([65.55.154.86]) by bay0-omc1-s25.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2668); Wed, 25 Apr 2007 04:21:49 -0700 Original-Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 25 Apr 2007 04:21:49 -0700 Original-Received: from 65.55.154.123 by by143fd.bay143.hotmail.msn.com with HTTP; Wed, 25 Apr 2007 11:21:45 GMT X-Originating-IP: [216.145.54.158] X-Originating-Email: [herberteuler@hotmail.com] X-Sender: herberteuler@hotmail.com In-Reply-To: X-OriginalArrivalTime: 25 Apr 2007 11:21:49.0543 (UTC) FILETIME=[EAC45F70:01C7872B] X-detected-kernel: Windows 2000 SP4, XP SP1+ X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:70089 Archived-At: Please, please, please forgive me. I forgot to delete the `if'. Please check the following patch. Regards, Guanpeng Xu *** simple.el Wed Apr 25 19:17:01 2007 --- simple.el.modified Wed Apr 25 19:15:11 2007 *************** (defun blink-matching-open () *** 4483,4495 **** blinkpos message-log-max ; Don't log messages about paren matching. matching-paren ! open-paren-line-string) (save-excursion (save-restriction ! (if blink-matching-paren-distance ! (narrow-to-region (max (minibuffer-prompt-end) ! (- (point) blink-matching-paren-distance)) ! oldpos)) (condition-case () (let ((parse-sexp-ignore-comments (and parse-sexp-ignore-comments --- 4483,4499 ---- blinkpos message-log-max ; Don't log messages about paren matching. matching-paren ! open-paren-line-string ! open-paren-may-be-outside) (save-excursion (save-restriction ! (when blink-matching-paren-distance ! (setq open-paren-may-be-outside ! (< (minibuffer-prompt-end) ! (- (point) blink-matching-paren-distance))) ! (narrow-to-region (max (minibuffer-prompt-end) ! (- (point) blink-matching-paren-distance)) ! oldpos)) (condition-case () (let ((parse-sexp-ignore-comments (and parse-sexp-ignore-comments *************** (defun blink-matching-open () *** 4510,4519 **** ;; a matching-char info, in which case the two CDRs ;; should match. (eq matching-paren (cdr (syntax-after (1- oldpos)))))) ! (message "Mismatched parentheses")) ((not blinkpos) (if (not blink-matching-paren-distance) ! (message "Unmatched parenthesis"))) ((pos-visible-in-window-p blinkpos) ;; Matching open within window, temporarily move to blinkpos but only ;; if `blink-matching-paren-on-screen' is non-nil. --- 4514,4529 ---- ;; a matching-char info, in which case the two CDRs ;; should match. (eq matching-paren (cdr (syntax-after (1- oldpos)))))) ! (if open-paren-may-be-outside ! (message (concat "Open parenthesis is not found in the region " ! "restricted by `blink-matching-paren-distance'")) ! (message "Mismatched parentheses"))) ((not blinkpos) (if (not blink-matching-paren-distance) ! (message "Unmatched parenthesis") ! (if open-paren-may-be-outside ! (message (concat "Open parenthesis is not found in the region " ! "restricted by `blink-matching-parent-distance'"))))) ((pos-visible-in-window-p blinkpos) ;; Matching open within window, temporarily move to blinkpos but only ;; if `blink-matching-paren-on-screen' is non-nil. _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/