diff options
Diffstat (limited to 'lisp/nxml/nxml-util.el')
-rw-r--r-- | lisp/nxml/nxml-util.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/nxml/nxml-util.el b/lisp/nxml/nxml-util.el index 1f904a2272f..4d35d88db57 100644 --- a/lisp/nxml/nxml-util.el +++ b/lisp/nxml/nxml-util.el @@ -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 |