changeset 25052:d2a4359531e0

(sgml-validate-command): Use nsgmls.
author Dave Love <fx@gnu.org>
date Fri, 23 Jul 1999 23:05:21 +0000
parents 64e3159f0c7b
children c9241709321e
files lisp/textmodes/sgml-mode.el
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el	Fri Jul 23 23:01:06 1999 +0000
+++ b/lisp/textmodes/sgml-mode.el	Fri Jul 23 23:05:21 1999 +0000
@@ -178,16 +178,17 @@
   "Vector of symbolic character names without `&' and `;'.")
 
 
-;; sgmls is a free SGML parser available from
-;; ftp.uu.net:pub/text-processing/sgml
+;; nsgmls is a free SGML parser in the SP suite available from
+;; ftp.jclark.com and otherwise packaged for GNU systems.
 ;; Its error messages can be parsed by next-error.
 ;; The -s option suppresses output.
 
-(defcustom sgml-validate-command "sgmls -s"
+(defcustom sgml-validate-command "nsgmls -s" ; replaced old `sgmls'
   "*The command to validate an SGML document.
 The file name of current buffer file name will be appended to this,
 separated by a space."
   :type 'string
+  :version "20.5"
   :group 'sgml)
 
 (defvar sgml-saved-validate-command nil