diff options
author | Jim Blandy <jimb@redhat.com> | 1993-07-04 17:41:56 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-07-04 17:41:56 +0000 |
commit | 5e2325c935239a21e063235a9c06a344b00e4f3a (patch) | |
tree | ecb16183f94fb549ab8d26630689bb6a3ecc2c0e /lisp/paren.el | |
parent | 9f315aebf604027e6490856f5149336ba5c84a50 (diff) | |
download | emacs-5e2325c935239a21e063235a9c06a344b00e4f3a.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp/paren.el')
-rw-r--r-- | lisp/paren.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/paren.el b/lisp/paren.el index 71b9a433d78..2cc049d77f9 100644 --- a/lisp/paren.el +++ b/lisp/paren.el @@ -1,6 +1,10 @@ ;;; paren.el --- highlight matching paren. ;; Copyright (C) 1993 Free Software Foundation, Inc. +;;; Author: rms@gnu.ai.mit.edu +;;; Maintainer: FSF +;;; Keywords: languages, faces + ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify @@ -61,7 +65,10 @@ 255)))))) ;; If they don't properly match, don't show. (if mismatch - (setq pos nil)))) + (progn + (message "Paren mismatch") +;;; (setq pos nil) + )))) (cond (pos (if show-paren-overlay (move-overlay show-paren-overlay (- pos dir) pos) |