summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorIan Kelling <ian@iankelling.org>2016-09-24 22:32:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-25 23:39:03 (GMT)
commitc151aa3b58c952899531aa52e64d76b50fb52e62 (patch)
tree3185cd295067d9a75a6ae0c20032db23b312021a /gitweb
parent6fe1b1407ed91823daa5d487abe457ff37463349 (diff)
downloadgit-c151aa3b58c952899531aa52e64d76b50fb52e62.zip
git-c151aa3b58c952899531aa52e64d76b50fb52e62.tar.gz
git-c151aa3b58c952899531aa52e64d76b50fb52e62.tar.bz2
gitweb: remove unused guess_file_syntax() parameter
Signed-off-by: Ian Kelling <ian@iankelling.org> Acked-by: Jakub Narębski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 33d701d..6cb4280 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -3913,7 +3913,7 @@ sub blob_contenttype {
# guess file syntax for syntax highlighting; return undef if no highlighting
# the name of syntax can (in the future) depend on syntax highlighter used
sub guess_file_syntax {
- my ($highlight, $mimetype, $file_name) = @_;
+ my ($highlight, $file_name) = @_;
return undef unless ($highlight && defined $file_name);
my $basename = basename($file_name, '.in');
return $highlight_basename{$basename}
@@ -7062,7 +7062,7 @@ sub git_blob {
$have_blame &&= ($mimetype =~ m!^text/!);
my $highlight = gitweb_check_feature('highlight');
- my $syntax = guess_file_syntax($highlight, $mimetype, $file_name);
+ my $syntax = guess_file_syntax($highlight, $file_name);
$fd = run_highlighter($fd, $highlight, $syntax)
if $syntax;