1 /* parens.c -- Implementation of matching parentheses feature. */
3 /* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
5 This file is part of the GNU Readline Library, a library for
6 reading lines of text with interactive input and history editing.
8 The GNU Readline Library is free software; you can redistribute it
9 and/or modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 1, or
11 (at your option) any later version.
13 The GNU Readline Library is distributed in the hope that it will be
14 useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 The GNU General Public License is often shipped with GNU software, and
19 is generally kept in a file called COPYING or LICENSE. If you do not
20 have a copy of the license, write to the Free Software Foundation,
21 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #define READLINE_LIBRARY
26 #if !defined (PAREN_MATCHING)
27 extern int rl_insert ();
30 rl_insert_close (count
, invoking_key
)
31 int count
, invoking_key
;
33 return (rl_insert (count
, invoking_key
));
36 #else /* PAREN_MATCHING */
38 #if defined (HAVE_CONFIG_H)
43 #include <sys/types.h>
45 #if defined (FD_SET) && !defined (HAVE_SELECT)
49 #if defined (HAVE_SELECT)
50 # include <sys/time.h>
51 #endif /* HAVE_SELECT */
52 #if defined (HAVE_SYS_SELECT_H)
53 # include <sys/select.h>
56 #if defined (HAVE_STRING_H)
58 #else /* !HAVE_STRING_H */
60 #endif /* !HAVE_STRING_H */
62 #if !defined (strchr) && !defined (__STDC__)
63 extern char *strchr (), *strrchr ();
64 #endif /* !strchr && !__STDC__ */
68 extern int rl_explicit_arg
;
70 /* Non-zero means try to blink the matching open parenthesis when the
71 close parenthesis is inserted. */
72 #if defined (HAVE_SELECT)
73 int rl_blink_matching_paren
= 1;
74 #else /* !HAVE_SELECT */
75 int rl_blink_matching_paren
= 0;
76 #endif /* !HAVE_SELECT */
78 static int find_matching_open ();
81 rl_insert_close (count
, invoking_key
)
82 int count
, invoking_key
;
84 if (rl_explicit_arg
|| !rl_blink_matching_paren
)
85 rl_insert (count
, invoking_key
);
88 #if defined (HAVE_SELECT)
89 int orig_point
, match_point
, ready
;
93 rl_insert (1, invoking_key
);
94 (*rl_redisplay_function
) ();
96 find_matching_open (rl_line_buffer
, rl_point
- 2, invoking_key
);
98 /* Emacs might message or ring the bell here, but I don't. */
103 FD_SET (fileno (rl_instream
), &readfds
);
105 timer
.tv_usec
= 500000;
107 orig_point
= rl_point
;
108 rl_point
= match_point
;
109 (*rl_redisplay_function
) ();
110 ready
= select (1, &readfds
, (fd_set
*)NULL
, (fd_set
*)NULL
, &timer
);
111 rl_point
= orig_point
;
112 #else /* !HAVE_SELECT */
113 rl_insert (count
, invoking_key
);
114 #endif /* !HAVE_SELECT */
120 find_matching_open (string
, from
, closer
)
125 int opener
, level
, delimiter
;
129 case ']': opener
= '['; break;
130 case '}': opener
= '{'; break;
131 case ')': opener
= '('; break;
136 level
= 1; /* The closer passed in counts as 1. */
137 delimiter
= 0; /* Delimited state unknown. */
139 for (i
= from
; i
> -1; i
--)
141 if (delimiter
&& (string
[i
] == delimiter
))
143 else if (rl_basic_quote_characters
&& strchr (rl_basic_quote_characters
, string
[i
]))
144 delimiter
= string
[i
];
145 else if (!delimiter
&& (string
[i
] == closer
))
147 else if (!delimiter
&& (string
[i
] == opener
))
156 #endif /* PAREN_MATCHING */