Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
ccd9d172
Commit
ccd9d172
authored
Jun 16, 2001
by
jake%acutex.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 83619 - QuickSearch was crashing Netscape 4.76 and 4.77 on Unix
Patch by Andreas Franke <afranke@ags.uni-sb.de>
parent
4ac17e8c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
quicksearch.js
quicksearch.js
+4
-2
No files found.
quicksearch.js
View file @
ccd9d172
...
...
@@ -72,8 +72,10 @@ function isPrefix(s1, s2) {
}
function
member
(
s
,
l
)
{
return
(
l
.
length
>
0
)
&&
((
s
==
l
[
0
])
||
member
(
s
,
l
.
slice
(
1
)));
for
(
var
i
=
0
;
i
<
l
.
length
;
i
++
)
{
if
(
l
[
i
]
==
s
)
return
true
;
}
return
false
;
}
function
add
(
s
,
l
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment