diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-12-19 01:46:23 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-12-19 01:46:23 +0000 |
commit | 418784e29645d39f4d36177129e36818a7c34b9e (patch) | |
tree | 3afbade030313c92aacc8ef1e7371f5302b53e09 /lisp/nxml | |
parent | ddc30be73a0c9a4f14597df436cebe14d15454da (diff) | |
download | emacs-418784e29645d39f4d36177129e36818a7c34b9e.tar.gz |
(rng-schema-locating-file-schema-file): Fix last change.
(rng-schema-locating-files-default): Look in current dir, as per manual.
Diffstat (limited to 'lisp/nxml')
-rw-r--r-- | lisp/nxml/rng-loc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/nxml/rng-loc.el b/lisp/nxml/rng-loc.el index a385fda9263..5646a262068 100644 --- a/lisp/nxml/rng-loc.el +++ b/lisp/nxml/rng-loc.el @@ -39,11 +39,11 @@ Nil if using a vacuous schema.") (make-variable-buffer-local 'rng-current-schema-file-name) (defvar rng-schema-locating-files-default - (list (expand-file-name "schema/schemas.xml" data-directory)) + (list "schemas.xml" (expand-file-name "schema/schemas.xml" data-directory)) "Default value for variable `rng-schema-locating-files'.") (defvar rng-schema-locating-file-schema-file - (list (expand-file-name "schema/locate.rnc" data-directory)) + (expand-file-name "schema/locate.rnc" data-directory) "File containing schema for schema locating files.") (defvar rng-schema-locating-file-schema nil |