X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/7b1019e2781472c793d0bf74e2b9ee17894270b8..95a2cb24b0697558e6629460d8bc693b394f0138:/lisp/nxml/nxml-uchnm.el diff --git a/lisp/nxml/nxml-uchnm.el b/lisp/nxml/nxml-uchnm.el index b9ceb504bd..1d92ab3879 100644 --- a/lisp/nxml/nxml-uchnm.el +++ b/lisp/nxml/nxml-uchnm.el @@ -1,9 +1,9 @@ ;;; nxml-uchnm.el --- support for Unicode standard cha names in nxml-mode -;; Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2003, 2007-2015 Free Software Foundation, Inc. ;; Author: James Clark -;; Keywords: XML +;; Keywords: wp, hypermedia, languages, XML ;; This file is part of GNU Emacs. @@ -145,13 +145,13 @@ ) "List of Unicode blocks. For each block there is a list (NAME FIRST LAST), where -NAME is a string giving the offical name of the block, +NAME is a string giving the official name of the block, FIRST is the first code-point and LAST is the last code-point. Blocks containing only characters with algorithmic names or no names are omitted.") (defun nxml-unicode-block-char-name-set (name) - "Return a symbol for a block whose offical Unicode name is NAME. + "Return a symbol for a block whose official Unicode name is NAME. The symbol is generated by downcasing and replacing each space by a hyphen." (intern (replace-regexp-in-string " " "-" (downcase name)))) @@ -209,7 +209,7 @@ by a hyphen." nxml-unicode-blocks) ;; Internal flag to control whether customize reloads the character tables. -;; Should be set the first time the +;; Should be set the first time the (defvar nxml-internal-unicode-char-name-sets-enabled nil) (defcustom nxml-enabled-unicode-blocks nxml-enabled-unicode-blocks-default @@ -248,5 +248,4 @@ the variable `nxml-enabled-unicode-blocks'." (provide 'nxml-uchnm) -;; arch-tag: 440248c3-b604-467c-8b50-e83662c659a3 ;;; nxml-uchnm.el ends here