diff options
| author | Jason Rumney | 2008-01-11 16:01:26 +0000 |
|---|---|---|
| committer | Jason Rumney | 2008-01-11 16:01:26 +0000 |
| commit | b85b660458e1aefb0c84b028234d9c202b2176bc (patch) | |
| tree | ea4e6cf55decf0aa11d62e88f54ea8a0bcec3cd4 | |
| parent | 7a10d292714ad6330bfcb87d651a68e5302c090e (diff) | |
| download | emacs-b85b660458e1aefb0c84b028234d9c202b2176bc.tar.gz emacs-b85b660458e1aefb0c84b028234d9c202b2176bc.zip | |
(nxml-char-name-ignore-case): Change default value.
(nxml-mode): Call nxml-enable-unicode-char-name-sets directly.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/nxml/nxml-mode.el | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7e4c616572e..8732275ee38 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,16 @@ | |||
| 1 | 2008-01-11 Jason Rumney <jasonr@gnu.org> | 1 | 2008-01-11 Jason Rumney <jasonr@gnu.org> |
| 2 | 2 | ||
| 3 | * nxml/nxml-uchnm.el (nxml-internal-unicode-char-name-sets-enabled): | ||
| 4 | Rename from nxml-enable-unicode-char-name-sets-flag. | ||
| 5 | (nxml-enable-unicode-char-name-sets-1): Merge into | ||
| 6 | nxml-enable-unicode-char-name-sets. | ||
| 7 | (nxml-enable-unicode-char-name-sets): Don't unconditionally set | ||
| 8 | nxml-char-name-ignore-case here. | ||
| 9 | |||
| 3 | * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly. | 10 | * nxml/nxml-mode.el (nxml-mode): Call rng-nxml-mode-init directly. |
| 4 | Update doc string and commentary. | 11 | Update doc string and commentary. |
| 12 | (nxml-char-name-ignore-case): Change default value. | ||
| 13 | (nxml-mode): Call nxml-enable-unicode-char-name-sets directly. | ||
| 5 | 14 | ||
| 6 | 2008-01-11 Martin Rudalics <rudalics@gmx.at> | 15 | 2008-01-11 Martin Rudalics <rudalics@gmx.at> |
| 7 | 16 | ||
diff --git a/lisp/nxml/nxml-mode.el b/lisp/nxml/nxml-mode.el index d45c1ded786..53c47810a1d 100644 --- a/lisp/nxml/nxml-mode.el +++ b/lisp/nxml/nxml-mode.el | |||
| @@ -554,6 +554,7 @@ Many aspects this mode can be customized using | |||
| 554 | (when nxml-auto-insert-xml-declaration-flag | 554 | (when nxml-auto-insert-xml-declaration-flag |
| 555 | (nxml-insert-xml-declaration))) | 555 | (nxml-insert-xml-declaration))) |
| 556 | (rng-nxml-mode-init) | 556 | (rng-nxml-mode-init) |
| 557 | (nxml-enable-unicode-char-name-sets) | ||
| 557 | (run-hooks 'nxml-mode-hook)) | 558 | (run-hooks 'nxml-mode-hook)) |
| 558 | 559 | ||
| 559 | (defun nxml-degrade (context err) | 560 | (defun nxml-degrade (context err) |
| @@ -2432,7 +2433,7 @@ and attempts to find another possible way to do the markup." | |||
| 2432 | 2433 | ||
| 2433 | ;;; Character names | 2434 | ;;; Character names |
| 2434 | 2435 | ||
| 2435 | (defvar nxml-char-name-ignore-case nil) | 2436 | (defvar nxml-char-name-ignore-case t) |
| 2436 | 2437 | ||
| 2437 | (defvar nxml-char-name-alist nil | 2438 | (defvar nxml-char-name-alist nil |
| 2438 | "Alist of character names. | 2439 | "Alist of character names. |