]> git.eshelyaron.com Git - emacs.git/commitdiff
(rng-schema-locating-file-schema-file): Fix last change.
authorJason Rumney <jasonr@gnu.org>
Wed, 19 Dec 2007 01:46:23 +0000 (01:46 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 19 Dec 2007 01:46:23 +0000 (01:46 +0000)
(rng-schema-locating-files-default): Look in current dir, as per manual.

lisp/nxml/rng-loc.el

index a385fda926392d4814c3063993ec2ec2807da5a6..5646a26206812280ae608950e5a11cf6a8ed7e8e 100644 (file)
@@ -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