mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; Prefer HTTPS to HTTP in many URLs
This commit is contained in:
parent
34bb39964d
commit
3187225416
57 changed files with 127 additions and 128 deletions
|
|
@ -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.
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue