mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(rng-schema-locating-files-default)
(rng-schema-locating-file-schema-file): Use files in etc/schemas. (rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
This commit is contained in:
parent
fc5377f779
commit
f98e3afab8
2 changed files with 14 additions and 3 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2007-12-19 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* nxml/rng-maint.el (rng-update-autoloads, rng-byte-compile-load)
|
||||
(rng-format-manual, rng-write-version): Do not autoload.
|
||||
|
||||
* nxml/rng-loc.el (rng-schema-locating-files-default)
|
||||
(rng-schema-locating-file-schema-file): Use files in etc/schemas.
|
||||
(rng-schema-loader-alist): Use rng-c-load-schema to load rnc files.
|
||||
|
||||
2007-12-18 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* files.el (cd-absolute): Set `list-buffers-directory' in order to
|
||||
|
|
|
|||
|
|
@ -38,10 +38,12 @@
|
|||
Nil if using a vacuous schema.")
|
||||
(make-variable-buffer-local 'rng-current-schema-file-name)
|
||||
|
||||
(defvar rng-schema-locating-files-default nil
|
||||
(defvar rng-schema-locating-files-default
|
||||
(list (expand-file-name "schema/schemas.xml" data-directory))
|
||||
"Default value for variable `rng-schema-locating-files'.")
|
||||
|
||||
(defvar rng-schema-locating-file-schema-file nil
|
||||
(defvar rng-schema-locating-file-schema-file
|
||||
(list (expand-file-name "schema/locate.rnc" data-directory))
|
||||
"File containing schema for schema locating files.")
|
||||
|
||||
(defvar rng-schema-locating-file-schema nil
|
||||
|
|
@ -52,7 +54,7 @@ Nil if using a vacuous schema.")
|
|||
:type '(repeat file)
|
||||
:group 'relax-ng)
|
||||
|
||||
(defvar rng-schema-loader-alist nil
|
||||
(defvar rng-schema-loader-alist '(("rnc" . rng-c-load-schema))
|
||||
"Alist of schema extensions vs schema loader functions.")
|
||||
|
||||
(defvar rng-cached-document-element nil)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue