]> code.delx.au - gnu-emacs/blobdiff - lisp/nxml/rng-dt.el
Update copyright year to 2015
[gnu-emacs] / lisp / nxml / rng-dt.el
index 1dda35dd1fc8b31837c37d73711c24119fd70345..855bf93e8a9301921732999dfd5981aef8b641f2 100644 (file)
@@ -1,9 +1,9 @@
 ;;; rng-dt.el --- datatype library interface for RELAX NG
 
-;; Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 2003, 2007-2015 Free Software Foundation, Inc.
 
 ;; Author: James Clark
-;; Keywords: XML, RelaxNG
+;; Keywords: wp, hypermedia, languages, XML, RelaxNG
 
 ;; This file is part of GNU Emacs.
 
     nil))
 
 (defvar rng-dt-namespace-context-getter nil
-  "A list used by datatype libraries to expand names.  The car of the
-list is a symbol which is the name of a function.  This function is
-applied to the cdr of the list.  The function must return a list whose
-car is the default namespace and whose cdr is an alist of (PREFIX
-. NAMESPACE) pairs, where PREFIX is a string and NAMESPACE is a
-symbol.  This must be dynamically bound before calling a datatype
-library.")
+  "A list used by datatype libraries to expand names.
+The car of the list is a symbol which is the name of a function.
+This function is applied to the cdr of the list.  The function must
+return a list whose car is the default namespace and whose cdr is an
+alist of (PREFIX . NAMESPACE) pairs, where PREFIX is a string and
+NAMESPACE is a symbol.  This must be dynamically bound before calling
+a datatype library.")
 
 (defsubst rng-dt-make-value (dt str)
   (apply (car dt) (cons str (cdr dt))))
@@ -61,5 +61,4 @@ library.")
 
 (provide 'rng-dt)
 
-;; arch-tag: 1dca90f1-8dae-4dd4-b61f-fade4452c014
 ;;; rng-dt.el ends here