(timer-set-time, timer-set-time-with-usecs): Doc fix.
[bpt/emacs.git] / lisp / paren.el
CommitLineData
5e28918b 1;;; paren.el --- highlight matching paren.
b578f267 2
e788f291 3;; Copyright (C) 1993 Free Software Foundation, Inc.
5e28918b 4
e4c37df7
JB
5;; Author: rms@gnu.ai.mit.edu
6;; Maintainer: FSF
7;; Keywords: languages, faces
5e2325c9 8
5e28918b
JB
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
5e28918b
JB
25
26;;; Commentary:
27
28;; Load this and it will display highlighting on whatever
29;; paren matches the one before or after point.
30
31;;; Code:
32
eb0d9f08 33;; This is the overlay used to highlight the matching paren.
d1475aa1 34(defvar show-paren-overlay nil)
eb0d9f08
RS
35;; This is the overlay used to highlight the closeparen
36;; right before point.
37(defvar show-paren-overlay-1 nil)
38
39(defvar show-paren-mismatch-face nil)
5e28918b 40
30322a27
RS
41(defvar show-paren-face 'region
42 "*Name of face to use for showing the matching paren.")
43
d1475aa1
JB
44;; Find the place to show, if there is one,
45;; and show it until input arrives.
46(defun show-paren-command-hook ()
bac79b51 47 ;; Do nothing if no window system to display results with.
e4b93bab 48 ;; Do nothing if executing keyboard macro.
bac79b51 49 ;; Do nothing if input is pending.
26ee1a5d 50 (if window-system
80e16738 51 (let (pos dir mismatch (oldpos (point))
30322a27 52 (face show-paren-face))
cde4c890
RS
53 (cond ((eq (char-syntax (preceding-char)) ?\))
54 (setq dir -1))
55 ((eq (char-syntax (following-char)) ?\()
56 (setq dir 1)))
eb0d9f08
RS
57 (if dir
58 (save-excursion
59 (save-restriction
60 ;; Determine the range within which to look for a match.
61 (if blink-matching-paren-distance
62 (narrow-to-region (max (point-min)
63 (- (point) blink-matching-paren-distance))
64 (min (point-max)
65 (+ (point) blink-matching-paren-distance))))
66 ;; Scan across one sexp within that range.
67 (condition-case ()
68 (setq pos (scan-sexps (point) dir))
69 (error nil))
70 ;; See if the "matching" paren is the right kind of paren
71 ;; to match the one we started at.
72 (if pos
73 (let ((beg (min pos oldpos)) (end (max pos oldpos)))
74 (and (/= (char-syntax (char-after beg)) ?\$)
75 (setq mismatch
080d320d
RS
76 (not (eq (char-after (1- end))
77 ;; This can give nil.
78 (matching-paren (char-after beg))))))))
eb0d9f08
RS
79 ;; If they don't properly match, use a different face,
80 ;; or print a message.
81 (if mismatch
82 (progn
83 (and (null show-paren-mismatch-face)
84 (x-display-color-p)
00b05a42 85 (progn
fee7c89d
KH
86 (add-to-list 'facemenu-unlisted-faces
87 'paren-mismatch)
00b05a42
RS
88 (make-face 'paren-mismatch)
89 (or (face-nontrivial-p 'paren-mismatch t)
90 (progn
91 (set-face-background 'paren-mismatch
92 "purple")
93 (set-face-foreground 'paren-mismatch
94 "white")))
95 (setq show-paren-mismatch-face 'paren-mismatch)))
eb0d9f08
RS
96 (if show-paren-mismatch-face
97 (setq face show-paren-mismatch-face)
98 (message "Paren mismatch"))))
99 )))
80e16738 100 (cond (pos
eb0d9f08
RS
101 (if (= dir -1)
102 ;; If matching backwards, highlight the closeparen
103 ;; before point as well as its matching open.
104 (progn
105 (if show-paren-overlay-1
776b7d5a
RS
106 (move-overlay show-paren-overlay-1
107 (+ (point) dir) (point)
108 (current-buffer))
eb0d9f08 109 (setq show-paren-overlay-1
6f554752 110 (make-overlay (+ (point) dir) (point))))
329ff3a4
RS
111 ;; Always set the overlay face, since it varies.
112 (overlay-put show-paren-overlay-1 'face face))
eb0d9f08
RS
113 ;; Otherwise, turn off any such highlighting.
114 (and show-paren-overlay-1
115 (overlay-buffer show-paren-overlay-1)
116 (delete-overlay show-paren-overlay-1)))
117 ;; Turn on highlighting for the matching paren.
80e16738 118 (if show-paren-overlay
776b7d5a
RS
119 (move-overlay show-paren-overlay (- pos dir) pos
120 (current-buffer))
80e16738 121 (setq show-paren-overlay
329ff3a4
RS
122 (make-overlay (- pos dir) pos)))
123 ;; Always set the overlay face, since it varies.
124 (overlay-put show-paren-overlay 'face face))
80e16738 125 (t
eb0d9f08
RS
126 ;; If not at a paren that has a match,
127 ;; turn off any previous paren highlighting.
80e16738 128 (and show-paren-overlay (overlay-buffer show-paren-overlay)
eb0d9f08
RS
129 (delete-overlay show-paren-overlay))
130 (and show-paren-overlay-1 (overlay-buffer show-paren-overlay-1)
131 (delete-overlay show-paren-overlay-1)))))))
5e28918b 132
eb0d9f08
RS
133(if window-system
134 (progn
69e01b8e 135 (setq blink-matching-paren-on-screen nil)
44bea10a 136 (run-with-idle-timer .1 t 'show-paren-command-hook)))
520bca57
RS
137;;; This is in case paren.el is preloaded.
138(add-hook 'window-setup-hook
139 (function (lambda ()
140 (if window-system
141 (progn
69e01b8e 142 (setq blink-matching-paren-on-screen nil)
44bea10a 143 (run-with-idle-timer .1 t 'show-paren-command-hook))))))
3a3236d2
JB
144(provide 'paren)
145
146;;; paren.el ends here