summaryrefslogtreecommitdiff
path: root/lisp/nxml
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2007-12-19 01:15:26 +0000
committerJason Rumney <jasonr@gnu.org>2007-12-19 01:15:26 +0000
commitddc30be73a0c9a4f14597df436cebe14d15454da (patch)
tree1ea6fe8f8a6d1a0260006220b402d38b34ede910 /lisp/nxml
parentf98e3afab8b15b5692ff31d2f2d05396495f405b (diff)
downloademacs-ddc30be73a0c9a4f14597df436cebe14d15454da.tar.gz
(rng-autoload-modules, rng-update-autoloads)
(rng-compile-modules, rng-byte-compile-load, rng-write-version): Remove.
Diffstat (limited to 'lisp/nxml')
-rw-r--r--lisp/nxml/rng-maint.el66
1 files changed, 0 insertions, 66 deletions
diff --git a/lisp/nxml/rng-maint.el b/lisp/nxml/rng-maint.el
index fa72dcf46bc..d535c45691a 100644
--- a/lisp/nxml/rng-maint.el
+++ b/lisp/nxml/rng-maint.el
@@ -32,64 +32,6 @@
(defvar rng-dir (file-name-directory load-file-name))
-(defconst rng-autoload-modules
- '(xmltok
- nxml-mode
- nxml-uchnm
- nxml-glyph
- rng-cmpct
- rng-maint
- rng-valid
- rng-xsd
- rng-nxml))
-
-(defun rng-update-autoloads ()
- "Update the autoloads in rng-auto.el."
- (interactive)
- (let* ((generated-autoload-file (expand-file-name "rng-auto.el"
- rng-dir)))
- (mapcar (lambda (x)
- (update-file-autoloads
- (expand-file-name (concat (symbol-name x) ".el") rng-dir)))
- rng-autoload-modules)))
-
-
-(defconst rng-compile-modules
- '(xmltok
- nxml-util
- nxml-enc
- nxml-glyph
- nxml-rap
- nxml-outln
- nxml-mode
- nxml-uchnm
- nxml-ns
- nxml-parse
- nxml-maint
- xsd-regexp
- rng-util
- rng-dt
- rng-xsd
- rng-uri
- rng-pttrn
- rng-cmpct
- rng-match
- rng-parse
- rng-loc
- rng-valid
- rng-nxml
- rng-maint))
-
-(defun rng-byte-compile-load ()
- "Byte-compile and load all of the RELAX NG library in an appropriate order."
- (interactive)
- (mapcar (lambda (x)
- (byte-compile-file (expand-file-name (concat (symbol-name x) ".el")
- rng-dir)
- t))
- rng-compile-modules))
-
-
;;; Conversion from XML to texinfo.
;; This is all a hack and is just enough to make the conversion work.
;; It's not intended for public use.
@@ -285,14 +227,6 @@
(insert ?\n))
(insert "\n\n"))))
-;;; Versioning
-
-(defun rng-write-version ()
- (find-file "VERSION")
- (erase-buffer)
- (insert nxml-version "\n")
- (save-buffer))
-
;;; Timing
(defun rng-time-to-float (time)