Skip to content

Commit 30599c6

Browse files
committed
doc/vim: update tcl.tk links into tcl-lang.org
1 parent 980901d commit 30599c6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Start coding
6363

6464
.. _committing as you go: https://dont-be-afraid-to-commit.readthedocs.io/en/latest/git/commandlinegit.html#commit-your-changes
6565
.. _create a pull request: https://help.github.com/articles/creating-a-pull-request/
66-
.. _Tcl 8.5 commands reference: https://www.tcl.tk/man/tcl8.5/TclCmd/contents.htm
66+
.. _Tcl 8.5 commands reference: https://www.tcl-lang.org/man/tcl8.5/TclCmd/contents.htm
6767

6868
Design notes
6969
~~~~~~~~~~~~

INSTALL-win.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Modules consists of one Tcl script so to run it from a user shell the only
1414
requirement is to have a working version of ``tclsh`` (version 8.5 or later)
1515
available on your system. ``tclsh`` is a part of `Tcl`_.
1616

17-
.. _Tcl: http://www.tcl.tk/software/tcltk/
17+
.. _Tcl: http://www.tcl-lang.org/software/tcltk/
1818

1919
A specific distribution zipball is provided to install Modules on a Windows
2020
platform. Content of this distribution zipball is ready for use and does not

INSTALL.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Requirements
1616
Modules consists of one Tcl script so to run it from a user shell the only
1717
requirement is to have a working version of ``tclsh`` (version 8.5 or later)
1818
available on your system. ``tclsh`` is a part of Tcl
19-
(http://www.tcl.tk/software/tcltk/).
19+
(http://www.tcl-lang.org/software/tcltk/).
2020

2121
To install Modules from a distribution tarball or a clone of the git
2222
repository, a build step is there to tailor the :file:`modulecmd.tcl` and the

contrib/vim/syntax/modulefile.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set syntax=tcl
77
syn clear tclCommand
88

99
" set again tclCommand with `syn match`
10-
" Basic Tcl commands: http://www.tcl.tk/man/tcl8.6/TclCmd/contents.htm
10+
" Basic Tcl commands: http://www.tcl-lang.org/man/tcl8.6/TclCmd/contents.htm
1111
syn match tclCommand "\v<(after|append|array|bgerror|binary|cd|chan|clock|close|concat)>"
1212
syn match tclCommand "\v<(dde|dict|encoding|eof|error|eval|exec|exit|expr|fblocked)>"
1313
syn match tclCommand "\v<(fconfigure|fcopy|file|fileevent|flush|format|gets|glob)>"
@@ -19,7 +19,7 @@ syn match tclCommand "\v<(registry|regsub|rename|scan|seek|self|set|socket|sour
1919
syn match tclCommand "\v<(split|string|subst|tell|time|trace|unknown|unload|unset)>"
2020
syn match tclCommand "\v<(update|uplevel|upvar|variable|vwait)>"
2121

22-
" The 'Tcl Standard Library' commands: http://www.tcl.tk/man/tcl8.6/TclCmd/library.htm
22+
" The 'Tcl Standard Library' commands: http://www.tcl-lang.org/man/tcl8.6/TclCmd/library.htm
2323
syn match tclCommand "\v<(auto_execok|auto_import|auto_load|auto_mkindex|auto_reset)>"
2424
syn match tclCommand "\v<(auto_qualify|tcl_findLibrary|parray|tcl_endOfWord)>"
2525
syn match tclCommand "\v<(tcl_startOfNextWord|tcl_startOfPreviousWord)>"

doc/source/cookbook/log-module-commands.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ with `trace`_ Tcl command.
7676

7777
**Compatible with Modules v4.2+**
7878

79-
.. _trace: https://www.tcl.tk/man/tcl8.5/TclCmd/trace.html
79+
.. _trace: https://www.tcl-lang.org/man/tcl8.5/TclCmd/trace.html
8080
.. _Elasticsearch: https://www.elastic.co/elasticsearch/
8181
.. _Splunk: https://www.splunk.com/
82-
.. _upvar: https://www.tcl.tk/man/tcl8.5/TclCmd/upvar.html
82+
.. _upvar: https://www.tcl-lang.org/man/tcl8.5/TclCmd/upvar.html
8383

8484
Installation
8585
------------

0 commit comments

Comments
 (0)