aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2019-09-22 23:53:39 -0700
committerPaul Eggert2019-09-23 00:12:52 -0700
commit946a56a10fed769646a8b7c4ebc53f53c84be896 (patch)
tree33a93593b428789b7e49376427eac09d21082808 /src
parent78669517dc3db4d6d51fb26d71073fc0c196ab5d (diff)
downloademacs-946a56a10fed769646a8b7c4ebc53f53c84be896.tar.gz
emacs-946a56a10fed769646a8b7c4ebc53f53c84be896.zip
Update some URLs
This mostly changes http: to https: in URLs. It also updates some URLs that have moved, removes some URLs that no longer work, recommends against using procmail (procmail.org no longer works), and removes some mentions of the no-longer-existing Gmane, LPF and VTW. It doesn't update all URLs, just the ones I had time for. * GNUmakefile (help): * admin/admin.el (manual-doctype-string): * admin/charsets/Makefile.in (${charsetdir}/ALTERNATIVNYJ.map): * admin/charsets/mapconv: * lisp/net/soap-client.el (soap-create-envelope): * lisp/org/org.el (org-doi-server-url): * lisp/textmodes/bibtex.el (bibtex-generate-url-list): Prefer https: to http: un URLs.
Diffstat (limited to 'src')
-rw-r--r--src/.gdbinit2
-rw-r--r--src/character.c2
-rw-r--r--src/coding.c2
-rw-r--r--src/emacs.c6
-rw-r--r--src/fileio.c2
-rw-r--r--src/image.c4
-rw-r--r--src/lcms.c2
-rw-r--r--src/lisp.h2
-rw-r--r--src/nsfont.m2
-rw-r--r--src/pdumper.h2
-rw-r--r--src/process.c3
-rw-r--r--src/widget.c7
-rw-r--r--src/window.c4
-rw-r--r--src/xfaces.c2
-rw-r--r--src/xselect.c2
-rw-r--r--src/xsettings.c4
-rw-r--r--src/xterm.c8
17 files changed, 23 insertions, 33 deletions
diff --git a/src/.gdbinit b/src/.gdbinit
index e9ba5267ece..eb767f2dcb9 100644
--- a/src/.gdbinit
+++ b/src/.gdbinit
@@ -1314,7 +1314,7 @@ if hasattr(gdb, 'printing'):
1314 # simpler and works regardless of whether VAL is a pointer or 1314 # simpler and works regardless of whether VAL is a pointer or
1315 # integer. Also, val.cast (gdb.lookup.type ("EMACS_UINT")) 1315 # integer. Also, val.cast (gdb.lookup.type ("EMACS_UINT"))
1316 # would have problems with GDB 7.12.1; see 1316 # would have problems with GDB 7.12.1; see
1317 # <http://patchwork.sourceware.org/patch/11557/>. 1317 # <https://patchwork.sourceware.org/patch/11557/>
1318 ival = long (val) 1318 ival = long (val)
1319 1319
1320 # For nil, yield "XIL(0)", which is easier to read than "XIL(0x0)". 1320 # For nil, yield "XIL(0)", which is easier to read than "XIL(0x0)".
diff --git a/src/character.c b/src/character.c
index d14d0df29f8..a80e6f8de02 100644
--- a/src/character.c
+++ b/src/character.c
@@ -1045,7 +1045,7 @@ printablep (int c)
1045} 1045}
1046 1046
1047/* Return true if C is a horizontal whitespace character, as defined 1047/* Return true if C is a horizontal whitespace character, as defined
1048 by http://www.unicode.org/reports/tr18/tr18-19.html#blank. */ 1048 by https://www.unicode.org/reports/tr18/tr18-19.html#blank. */
1049bool 1049bool
1050blankp (int c) 1050blankp (int c)
1051{ 1051{
diff --git a/src/coding.c b/src/coding.c
index c0408fbce48..21e6dc4c192 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -2678,7 +2678,7 @@ encode_coding_emacs_mule (struct coding_system *coding)
2678 functions in this file, some parts are NOT ACCURATE or are OVERLY 2678 functions in this file, some parts are NOT ACCURATE or are OVERLY
2679 SIMPLIFIED. For thorough understanding, please refer to the 2679 SIMPLIFIED. For thorough understanding, please refer to the
2680 original document of ISO2022. This is equivalent to the standard 2680 original document of ISO2022. This is equivalent to the standard
2681 ECMA-35, obtainable from <URL:http://www.ecma.ch/> (*). 2681 ECMA-35, obtainable from <URL:https://www.ecma.ch/> (*).
2682 2682
2683 ISO2022 provides many mechanisms to encode several character sets 2683 ISO2022 provides many mechanisms to encode several character sets
2684 in 7-bit and 8-bit environments. For 7-bit environments, all text 2684 in 7-bit and 8-bit environments. For 7-bit environments, all text
diff --git a/src/emacs.c b/src/emacs.c
index 8a8d8b558e4..21a05d337ef 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -159,11 +159,7 @@ static uintmax_t heap_bss_diff;
159 On Cocoa, CoreFoundation lib fails in forked process, see Mac OS X 159 On Cocoa, CoreFoundation lib fails in forked process, see Mac OS X
160 Leopard Developer Release Notes for CoreFoundation Framework: 160 Leopard Developer Release Notes for CoreFoundation Framework:
161 161
162 http://developer.apple.com/ReleaseNotes/ 162 https://web.archive.org/web/20090225231934/http://developer.apple.com/ReleaseNotes/CoreFoundation/CoreFoundation.html
163 CoreFoundation/CoreFoundation.html
164
165 Note: the above is no longer available on-line, but it can be found
166 via the "Wayback machine", https://web.archive.org.
167 163
168 On Windows, a Cygwin fork child cannot access the USER subsystem. 164 On Windows, a Cygwin fork child cannot access the USER subsystem.
169 165
diff --git a/src/fileio.c b/src/fileio.c
index b510d48dbaa..45186d69401 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6151,7 +6151,7 @@ init_fileio (void)
6151 For more on why fsync often fails to work on today's hardware, see: 6151 For more on why fsync often fails to work on today's hardware, see:
6152 Zheng M et al. Understanding the robustness of SSDs under power fault. 6152 Zheng M et al. Understanding the robustness of SSDs under power fault.
6153 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84 6153 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84
6154 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf 6154 https://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf
6155 6155
6156 For more on why fsync does not suffice even if it works properly, see: 6156 For more on why fsync does not suffice even if it works properly, see:
6157 Roche X. Necessary step(s) to synchronize filename operations on disk. 6157 Roche X. Necessary step(s) to synchronize filename operations on disk.
diff --git a/src/image.c b/src/image.c
index 5183558029c..d9b7101d658 100644
--- a/src/image.c
+++ b/src/image.c
@@ -8294,7 +8294,7 @@ gif_load (struct frame *f, struct image *img)
8294 /* For disposal == 0, the spec says "No disposal specified. The 8294 /* For disposal == 0, the spec says "No disposal specified. The
8295 decoder is not required to take any action." In practice, it 8295 decoder is not required to take any action." In practice, it
8296 seems we need to treat this like "keep in place", see e.g. 8296 seems we need to treat this like "keep in place", see e.g.
8297 http://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */ 8297 https://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */
8298 if (disposal == 0) 8298 if (disposal == 0)
8299 disposal = 1; 8299 disposal = 1;
8300 8300
@@ -9196,7 +9196,7 @@ DEFUN ("imagemagick-types", Fimagemagick_types, Simagemagick_types, 0, 0, 0,
9196 doc: /* Return a list of image types supported by ImageMagick. 9196 doc: /* Return a list of image types supported by ImageMagick.
9197Each entry in this list is a symbol named after an ImageMagick format 9197Each entry in this list is a symbol named after an ImageMagick format
9198tag. See the ImageMagick manual for a list of ImageMagick formats and 9198tag. See the ImageMagick manual for a list of ImageMagick formats and
9199their descriptions (http://www.imagemagick.org/script/formats.php). 9199their descriptions (https://www.imagemagick.org/script/formats.php).
9200You can also try the shell command: `identify -list format'. 9200You can also try the shell command: `identify -list format'.
9201 9201
9202Note that ImageMagick recognizes many file-types that Emacs does not 9202Note that ImageMagick recognizes many file-types that Emacs does not
diff --git a/src/lcms.c b/src/lcms.c
index cd8de0e45a8..01ce886f406 100644
--- a/src/lcms.c
+++ b/src/lcms.c
@@ -108,7 +108,7 @@ parse_lab_list (Lisp_Object lab_list, cmsCIELab *color)
108 return true; 108 return true;
109} 109}
110 110
111/* http://www.ece.rochester.edu/~gsharma/ciede2000/ciede2000noteCRNA.pdf> */ 111/* http://www.ece.rochester.edu/~gsharma/ciede2000/ciede2000noteCRNA.pdf */
112 112
113DEFUN ("lcms-cie-de2000", Flcms_cie_de2000, Slcms_cie_de2000, 2, 5, 0, 113DEFUN ("lcms-cie-de2000", Flcms_cie_de2000, Slcms_cie_de2000, 2, 5, 0,
114 doc: /* Compute CIEDE2000 metric distance between COLOR1 and COLOR2. 114 doc: /* Compute CIEDE2000 metric distance between COLOR1 and COLOR2.
diff --git a/src/lisp.h b/src/lisp.h
index e68d2732e21..bcb91b2decc 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -5026,7 +5026,7 @@ struct for_each_tail_internal
5026 5026
5027 Use Brent’s teleporting tortoise-hare algorithm. See: 5027 Use Brent’s teleporting tortoise-hare algorithm. See:
5028 Brent RP. BIT. 1980;20(2):176-84. doi:10.1007/BF01933190 5028 Brent RP. BIT. 1980;20(2):176-84. doi:10.1007/BF01933190
5029 http://maths-people.anu.edu.au/~brent/pd/rpb051i.pdf 5029 https://maths-people.anu.edu.au/~brent/pd/rpb051i.pdf
5030 5030
5031 This macro uses maybe_quit because of an excess of caution. The 5031 This macro uses maybe_quit because of an excess of caution. The
5032 call to maybe_quit should not be needed in practice, as a very long 5032 call to maybe_quit should not be needed in practice, as a very long
diff --git a/src/nsfont.m b/src/nsfont.m
index 7a40d672b5d..dc609cc5d08 100644
--- a/src/nsfont.m
+++ b/src/nsfont.m
@@ -722,7 +722,7 @@ nsfont_open (struct frame *f, Lisp_Object font_entity, int pixel_size)
722 if (fabs (ns_attribute_fvalue (fontDesc, NSFontSlantTrait) > 0.05F)) 722 if (fabs (ns_attribute_fvalue (fontDesc, NSFontSlantTrait) > 0.05F))
723 traits |= NSItalicFontMask; 723 traits |= NSItalicFontMask;
724 724
725 /* see http://cocoadev.com/forums/comments.php?DiscussionID=74 */ 725 /* see https://web.archive.org/web/20100201175731/http://cocoadev.com/forums/comments.php?DiscussionID=74 */
726 fixLeopardBug = traits & NSBoldFontMask ? 10 : 5; 726 fixLeopardBug = traits & NSBoldFontMask ? 10 : 5;
727 nsfont = [fontMgr fontWithFamily: family 727 nsfont = [fontMgr fontWithFamily: family
728 traits: traits weight: fixLeopardBug 728 traits: traits weight: fixLeopardBug
diff --git a/src/pdumper.h b/src/pdumper.h
index 31b0d53b073..b07f017697d 100644
--- a/src/pdumper.h
+++ b/src/pdumper.h
@@ -15,7 +15,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details. 15GNU General Public License for more details.
16 16
17You should have received a copy of the GNU General Public License 17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ 18along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
19 19
20#ifndef EMACS_PDUMPER_H 20#ifndef EMACS_PDUMPER_H
21#define EMACS_PDUMPER_H 21#define EMACS_PDUMPER_H
diff --git a/src/process.c b/src/process.c
index d30b17d45e5..e53d5d88945 100644
--- a/src/process.c
+++ b/src/process.c
@@ -5547,8 +5547,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd,
5547 through all the channels and check for data. 5547 through all the channels and check for data.
5548 This is a workaround needed for some versions of 5548 This is a workaround needed for some versions of
5549 the gnutls library -- 2.12.14 has been confirmed 5549 the gnutls library -- 2.12.14 has been confirmed
5550 to need it. See 5550 to need it. */
5551 http://comments.gmane.org/gmane.emacs.devel/145074 */
5552 for (channel = 0; channel < FD_SETSIZE; ++channel) 5551 for (channel = 0; channel < FD_SETSIZE; ++channel)
5553 if (! NILP (chan_process[channel])) 5552 if (! NILP (chan_process[channel]))
5554 { 5553 {
diff --git a/src/widget.c b/src/widget.c
index c3d396ddab0..e8eaf0fadf0 100644
--- a/src/widget.c
+++ b/src/widget.c
@@ -21,12 +21,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
21/* This file has been censored by the Communications Decency Act. 21/* This file has been censored by the Communications Decency Act.
22 That law was passed under the guise of a ban on pornography, but 22 That law was passed under the guise of a ban on pornography, but
23 it bans far more than that. This file did not contain pornography, 23 it bans far more than that. This file did not contain pornography,
24 but it was censored nonetheless. 24 but it was censored nonetheless. */
25
26 For information on US government censorship of the Internet, and
27 what you can do to bring back freedom of the press, see the web
28 site http://www.vtw.org/
29 */
30 25
31#include <config.h> 26#include <config.h>
32#include "widget.h" 27#include "widget.h"
diff --git a/src/window.c b/src/window.c
index 9a0a9a115c2..321b3e01b79 100644
--- a/src/window.c
+++ b/src/window.c
@@ -6350,8 +6350,8 @@ and redisplay normally--don't erase and redraw the frame. */)
6350 int this_scroll_margin; 6350 int this_scroll_margin;
6351 6351
6352 /* For reasons why we signal an error here, see 6352 /* For reasons why we signal an error here, see
6353 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00053.html, 6353 https://lists.gnu.org/r/emacs-devel/2014-06/msg00053.html,
6354 http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00094.html. */ 6354 https://lists.gnu.org/r/emacs-devel/2014-06/msg00094.html. */
6355 if (buf != current_buffer) 6355 if (buf != current_buffer)
6356 error ("`recenter'ing a window that does not display current-buffer."); 6356 error ("`recenter'ing a window that does not display current-buffer.");
6357 6357
diff --git a/src/xfaces.c b/src/xfaces.c
index c3cae7e2a68..946401b9e99 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -4177,7 +4177,7 @@ color_distance (Emacs_Color *x, Emacs_Color *y)
4177 algorithm: it does not have a range of colors where it suddenly 4177 algorithm: it does not have a range of colors where it suddenly
4178 gives far from optimal results. 4178 gives far from optimal results.
4179 4179
4180 See <http://www.compuphase.com/cmetric.htm> for more info. */ 4180 See <https://www.compuphase.com/cmetric.htm> for more info. */
4181 4181
4182 long r = (x->red - y->red) >> 8; 4182 long r = (x->red - y->red) >> 8;
4183 long g = (x->green - y->green) >> 8; 4183 long g = (x->green - y->green) >> 8;
diff --git a/src/xselect.c b/src/xselect.c
index d74f064a1c7..6bb35607a51 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -2137,7 +2137,7 @@ On Nextstep, TERMINAL is unused. */)
2137 2137
2138 2138
2139/* Send clipboard manager a SAVE_TARGETS request with a UTF8_STRING 2139/* Send clipboard manager a SAVE_TARGETS request with a UTF8_STRING
2140 property (http://www.freedesktop.org/wiki/ClipboardManager). */ 2140 property (https://www.freedesktop.org/wiki/ClipboardManager/). */
2141 2141
2142static Lisp_Object 2142static Lisp_Object
2143x_clipboard_manager_save (Lisp_Object frame) 2143x_clipboard_manager_save (Lisp_Object frame)
diff --git a/src/xsettings.c b/src/xsettings.c
index 06c47c6c6ce..c23a5dc72c7 100644
--- a/src/xsettings.c
+++ b/src/xsettings.c
@@ -343,8 +343,8 @@ get_prop_window (struct x_display_info *dpyinfo)
343#define PAD(nr) (((nr) + 3) & ~3) 343#define PAD(nr) (((nr) + 3) & ~3)
344 344
345/* Parse xsettings and extract those that deal with Xft. 345/* Parse xsettings and extract those that deal with Xft.
346 See http://freedesktop.org/wiki/Specifications/XSettingsRegistry 346 See https://freedesktop.org/wiki/Specifications/XSettingsRegistry/
347 and http://standards.freedesktop.org/xsettings-spec/xsettings-spec-0.5.html. 347 and https://specifications.freedesktop.org/xsettings-spec/xsettings-spec-0.5.html.
348 348
349 Layout of prop. First is a header: 349 Layout of prop. First is a header:
350 350
diff --git a/src/xterm.c b/src/xterm.c
index 27d98003565..255b6c62d5a 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -10599,7 +10599,7 @@ x_set_offset (struct frame *f, register int xoff, register int yoff, int change_
10599 on the root window for frame F contains ATOMNAME. 10599 on the root window for frame F contains ATOMNAME.
10600 This is how a WM check shall be done according to the Window Manager 10600 This is how a WM check shall be done according to the Window Manager
10601 Specification/Extended Window Manager Hints at 10601 Specification/Extended Window Manager Hints at
10602 http://freedesktop.org/wiki/Specifications/wm-spec. */ 10602 https://freedesktop.org/wiki/Specifications/wm-spec/. */
10603 10603
10604bool 10604bool
10605x_wm_supports (struct frame *f, Atom want_atom) 10605x_wm_supports (struct frame *f, Atom want_atom)
@@ -11524,7 +11524,7 @@ static void
11524xembed_request_focus (struct frame *f) 11524xembed_request_focus (struct frame *f)
11525{ 11525{
11526 /* See XEmbed Protocol Specification at 11526 /* See XEmbed Protocol Specification at
11527 http://freedesktop.org/wiki/Specifications/xembed-spec */ 11527 https://freedesktop.org/wiki/Specifications/xembed-spec/ */
11528 if (FRAME_VISIBLE_P (f)) 11528 if (FRAME_VISIBLE_P (f))
11529 xembed_send_message (f, CurrentTime, 11529 xembed_send_message (f, CurrentTime,
11530 XEMBED_REQUEST_FOCUS, 0, 0, 0); 11530 XEMBED_REQUEST_FOCUS, 0, 0, 0);
@@ -11536,7 +11536,7 @@ static void
11536x_ewmh_activate_frame (struct frame *f) 11536x_ewmh_activate_frame (struct frame *f)
11537{ 11537{
11538 /* See Window Manager Specification/Extended Window Manager Hints at 11538 /* See Window Manager Specification/Extended Window Manager Hints at
11539 http://freedesktop.org/wiki/Specifications/wm-spec */ 11539 https://freedesktop.org/wiki/Specifications/wm-spec/ */
11540 11540
11541 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f); 11541 struct x_display_info *dpyinfo = FRAME_DISPLAY_INFO (f);
11542 11542
@@ -11586,7 +11586,7 @@ x_focus_frame (struct frame *f, bool noactivate)
11586 { 11586 {
11587 /* For Xembedded frames, normally the embedder forwards key 11587 /* For Xembedded frames, normally the embedder forwards key
11588 events. See XEmbed Protocol Specification at 11588 events. See XEmbed Protocol Specification at
11589 http://freedesktop.org/wiki/Specifications/xembed-spec */ 11589 https://freedesktop.org/wiki/Specifications/xembed-spec/ */
11590 xembed_request_focus (f); 11590 xembed_request_focus (f);
11591 } 11591 }
11592 else 11592 else