mirror of
https://github.com/curl/curl.git
synced 2026-08-01 21:40:32 +03:00
tidy-up: update MS links, allow long URLs via checksrc
- update Microsoft documentation links. (also drop language designator where present.) - checksrc: allow longer than 78 character lines if they contain a https URL. To make these links easier to use and parse. - merge links that were split into two lines. Closes #18626
This commit is contained in:
parent
92f215fea1
commit
1429858bce
16 changed files with 33 additions and 42 deletions
|
|
@ -516,7 +516,7 @@ sub scanfile {
|
|||
}
|
||||
|
||||
# detect long lines
|
||||
if(length($l) > $max_column) {
|
||||
if(length($l) > $max_column && $l !~ / https:\/\//) {
|
||||
checkwarn("LONGLINE", $line, length($l), $file, $l,
|
||||
"Longer than $max_column columns");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue