Skip to content

Commit dd0cf64

Browse files
committed
*: Use https in URLs
1 parent 6507190 commit dd0cf64

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ First, install the package:
2424
[debian-package]: https://packages.debian.org/zsh-syntax-highlighting
2525
[fedora-package]: https://apps.fedoraproject.org/packages/zsh-syntax-highlighting
2626
[fedora-package-alt]: https://bodhi.fedoraproject.org/updates/?packages=zsh-syntax-highlighting
27-
[freebsd-port]: http://www.freshports.org/textproc/zsh-syntax-highlighting/
27+
[freebsd-port]: https://www.freshports.org/textproc/zsh-syntax-highlighting/
2828
[gentoo-repository]: https://packages.gentoo.org/packages/app-shells/zsh-syntax-highlighting
2929
[netbsd-port]: http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/shells/zsh-syntax-highlighting/
3030
[obs-repository]: https://software.opensuse.org/download.html?project=shells%3Azsh-users%3Azsh-syntax-highlighting&package=zsh-syntax-highlighting

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ in this area.
735735
736736
## Developer-visible changes:
737737
738-
- Test harness converted to [TAP](http://testanything.org/tap-specification.html) format
738+
- Test harness converted to [TAP](https://testanything.org/tap-specification.html) format
739739
(d99aa58aaaef, et seq)
740740
741741
- Run each test in a separate subprocess, isolating them from each other

docs/highlighters/regexp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ See also: [regular expressions tutorial][perlretut], zsh regexp operator `=~`
5959
in [the `zshmisc(1)` manual page][zshmisc-Conditional-Expressions]
6060

6161
[zshzle-Character-Highlighting]: https://zsh.sourceforge.io/Doc/Release/Zsh-Line-Editor.html#Character-Highlighting
62-
[perlretut]: http://perldoc.perl.org/perlretut.html
62+
[perlretut]: https://perldoc.perl.org/perlretut
6363
[zshmisc-Conditional-Expressions]: https://zsh.sourceforge.io/Doc/Release/Conditional-Expressions.html#Conditional-Expressions
6464
[MAN_ZSH_REGEX]: https://zsh.sourceforge.io/Doc/Release/Zsh-Modules.html#The-zsh_002fregex-Module
6565
[pcresyntax]: https://www.pcre.org/original/doc/html/pcresyntax.html

tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ By default, the results of all tests will be printed; to show only "interesting"
104104
results (tests that failed but were expected to succeed, or vice-versa), run
105105
`make quiet-test` (or `make test QUIET=y`).
106106

107-
[TAP]: http://testanything.org/
107+
[TAP]: https://testanything.org/
108108

109109

110110
Performance test

zsh-syntax-highlighting.zsh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ _zsh_highlight__is_function_p() {
7676
# will succeed. In particular, if F has been marked for autoloading
7777
# but is not available in $fpath, then calling this function on F will return False.
7878
#
79-
# See users/21671 http://www.zsh.org/cgi-bin/mla/redirect?USERNUMBER=21671
79+
# See users/21671 https://www.zsh.org/cgi-bin/mla/redirect?USERNUMBER=21671
8080
_zsh_highlight__function_callable_p() {
8181
if _zsh_highlight__is_function_p "$1" &&
8282
! _zsh_highlight__function_is_autoload_stub_p "$1"
@@ -100,7 +100,7 @@ _zsh_highlight__function_callable_p() {
100100
# -------------------------------------------------------------------------------------------------
101101

102102
# Use workaround for bug in ZSH?
103-
# zsh-users/zsh@48cadf4 http://www.zsh.org/mla/workers//2017/msg00034.html
103+
# zsh-users/zsh@48cadf4 https://www.zsh.org/mla/workers/2017/msg00034.html
104104
autoload -Uz is-at-least
105105
if is-at-least 5.4; then
106106
typeset -g zsh_highlight__pat_static_bug=false

0 commit comments

Comments
 (0)