aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorPaul Eggert2017-09-13 15:52:52 -0700
committerPaul Eggert2017-09-13 15:54:37 -0700
commitbc511a64f6da9ab51acc7c8865e80c4a4cb655c2 (patch)
treeef96fb35c034096404b7edaa25982023f38cf84f /src/xterm.c
parent5da53a01912c2f5d46f5df4ef8cc13a34b5017d4 (diff)
downloademacs-bc511a64f6da9ab51acc7c8865e80c4a4cb655c2.tar.gz
emacs-bc511a64f6da9ab51acc7c8865e80c4a4cb655c2.zip
Prefer HTTPS to FTP and HTTP in documentation
Most of this change is to boilerplate commentary such as license URLs. This change was prompted by ftp://ftp.gnu.org's going-away party, planned for November. Change these FTP URLs to https://ftp.gnu.org instead. Make similar changes for URLs to other organizations moving away from FTP. Also, change HTTP to HTTPS for URLs to gnu.org and fsf.org when this works, as this will further help defend against man-in-the-middle attacks (for this part I omitted the MS-DOS and MS-Windows sources and the test tarballs to keep the workload down). HTTPS is not fully working to lists.gnu.org so I left those URLs alone for now.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 0b949330ebc..0b321909c85 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -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/* New display code by Gerd Moellmann <gerd@gnu.org>. */ 20/* New display code by Gerd Moellmann <gerd@gnu.org>. */
21/* Xt features made by Fred Pierresteguy. */ 21/* Xt features made by Fred Pierresteguy. */
@@ -8005,7 +8005,7 @@ handle_one_xevent (struct x_display_info *dpyinfo,
8005 { 8005 {
8006#ifdef USE_GTK 8006#ifdef USE_GTK
8007 /* This seems to be needed for GTK 2.6 and later, see 8007 /* This seems to be needed for GTK 2.6 and later, see
8008 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */ 8008 https://debbugs.gnu.org/cgi/bugreport.cgi?bug=15398. */
8009 x_clear_area (f, 8009 x_clear_area (f,
8010 event->xexpose.x, event->xexpose.y, 8010 event->xexpose.x, event->xexpose.y,
8011 event->xexpose.width, event->xexpose.height); 8011 event->xexpose.width, event->xexpose.height);
@@ -12268,7 +12268,7 @@ static void
12268x_setup_pointer_blanking (struct x_display_info *dpyinfo) 12268x_setup_pointer_blanking (struct x_display_info *dpyinfo)
12269{ 12269{
12270 /* FIXME: the brave tester should set EMACS_XFIXES because we're suspecting 12270 /* FIXME: the brave tester should set EMACS_XFIXES because we're suspecting
12271 X server bug, see http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17609. */ 12271 X server bug, see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=17609. */
12272 if (egetenv ("EMACS_XFIXES") && x_probe_xfixes_extension (dpyinfo->display)) 12272 if (egetenv ("EMACS_XFIXES") && x_probe_xfixes_extension (dpyinfo->display))
12273 dpyinfo->toggle_visible_pointer = xfixes_toggle_visible_pointer; 12273 dpyinfo->toggle_visible_pointer = xfixes_toggle_visible_pointer;
12274 else 12274 else