diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-10-15 11:17:51 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-10-15 13:06:45 +0200 |
commit | 3187225416c66061b67e89092addc15cad2202b9 (patch) | |
tree | c751643b41773edaa5b117345ee4a1e68501303b /lisp/textmodes | |
parent | 34bb39964d605d60284c17441a2478e003029ce2 (diff) | |
download | emacs-3187225416c66061b67e89092addc15cad2202b9.tar.gz emacs-3187225416c66061b67e89092addc15cad2202b9.tar.bz2 emacs-3187225416c66061b67e89092addc15cad2202b9.zip |
; Prefer HTTPS to HTTP in many URLs
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/less-css-mode.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/sgml-mode.el | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/less-css-mode.el b/lisp/textmodes/less-css-mode.el index 5d17b390f4d..bfb5566e896 100644 --- a/lisp/textmodes/less-css-mode.el +++ b/lisp/textmodes/less-css-mode.el @@ -24,7 +24,7 @@ ;;; Commentary: ;; This mode provides syntax highlighting for Less CSS files -;; (http://lesscss.org/), plus optional support for compilation of +;; (https://lesscss.org/), plus optional support for compilation of ;; .less files to .css files at the time they are saved: use ;; `less-css-compile-at-save' to enable this. ;; diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index 7d691430ec6..7ce30cba8a4 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -268,7 +268,7 @@ Currently, only Latin-1 characters are supported.") ;; prefer tidy because (o)nsgmls is often built without --enable-http ;; which makes it next to useless (cond ((executable-find "tidy") - ;; tidy is available from http://tidy.sourceforge.net/ + ;; tidy is available from https://tidy.sourceforge.net/ "tidy --gnu-emacs yes -utf8 -e -q") ((executable-find "nsgmls") ;; nsgmls is a free SGML parser in the SP suite available from @@ -276,7 +276,7 @@ Currently, only Latin-1 characters are supported.") "nsgmls -s") ((executable-find "onsgmls") ;; onsgmls is the community version of `nsgmls' - ;; hosted on http://openjade.sourceforge.net/ + ;; hosted on https://openjade.sourceforge.net/ "onsgmls -s") (t "Install (o)nsgmls, tidy, or some other SGML validator, and set `sgml-validate-command'")) "The command to validate an SGML document. |