From 418784e29645d39f4d36177129e36818a7c34b9e Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Wed, 19 Dec 2007 01:46:23 +0000 Subject: [PATCH] (rng-schema-locating-file-schema-file): Fix last change. (rng-schema-locating-files-default): Look in current dir, as per manual. --- lisp/nxml/rng-loc.el | 4 ++-- 1 file 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 -- 2.39.2