]> code.delx.au - gnu-emacs/blobdiff - lisp/nxml/nxml-util.el
Merge from emacs-23 branch
[gnu-emacs] / lisp / nxml / nxml-util.el
index 1f904a2272ff20719d0c1c280b76f98f167bd73d..e2e4ed348bdb145e295c6d61b01597eee9c430ae 100644 (file)
@@ -1,6 +1,6 @@
 ;;; nxml-util.el --- utility functions for nxml-*.el
 
-;; Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 2003, 2007-2011 Free Software Foundation, Inc.
 
 ;; Author: James Clark
 ;; Keywords: XML
@@ -25,7 +25,7 @@
 ;;; Code:
 
 (defconst nxml-debug nil
-  "enable nxml debugging. effective only at compile time")
+  "Enable nxml debugging.  Effective only at compile time.")
 
 (defsubst nxml-debug (format &rest args)
   (when nxml-debug
@@ -52,7 +52,7 @@
 
 (defun nxml-make-namespace (str)
   "Return a symbol for the namespace URI STR.
-STR must be a string. If STR is the empty string, return nil.
+STR must be a string.  If STR is the empty string, return nil.
 Otherwise, return the symbol whose name is STR prefixed with a colon."
   (if (string-equal str "")
       nil
@@ -132,5 +132,4 @@ modifications to the buffer."
 
 (provide 'nxml-util)
 
-;; arch-tag: 7d3b3af4-de2b-4410-bf67-94d64824324b
 ;;; nxml-util.el ends here