diff options
| author | Michael Olson | 2008-06-06 16:24:04 +0000 |
|---|---|---|
| committer | Michael Olson | 2008-06-06 16:24:04 +0000 |
| commit | cdea866600bd052d3862311dbde10efbd63f5fe6 (patch) | |
| tree | b62904f273977f7bae6fc8dcf54f68bb380c1bfa /lisp | |
| parent | e8ec402f1b86a1ed2c61bbc7de27aaefa2adb496 (diff) | |
| download | emacs-cdea866600bd052d3862311dbde10efbd63f5fe6.tar.gz emacs-cdea866600bd052d3862311dbde10efbd63f5fe6.zip | |
Add ChangeLog entries. Remove unneeded (require 'cl).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 26 | ||||
| -rw-r--r-- | lisp/nxml/nxml-util.el | 3 |
2 files changed, 26 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 156e51b1b70..87d2cf6c89f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2008-06-06 Daniel Colascione <danc@merrillpress.com> | ||
| 2 | |||
| 3 | * nxml/nxml-mode.el (nxml-syntax-highlight-flag) | ||
| 4 | (nxml-fontify-chunk-size, nxml-clear-face, nxml-set-fontified) | ||
| 5 | (nxml-clear-fontified, nxml-fontify, nxml-fontify1) | ||
| 6 | (nxml-fontify-buffer, nxml-do-fontify): Remove obsolete variables | ||
| 7 | and functions. | ||
| 8 | (nxml-font-lock-keywords, nxml-set-face, nxml-mode) | ||
| 9 | (nxml-degrade, nxml-after-change) | ||
| 10 | (nxml-after-change1, nxml-extend-region) | ||
| 11 | (nxml-extend-after-change-region) | ||
| 12 | (nxml-extend-after-change-region1, nxml-fontify-matcher) | ||
| 13 | (nxml-toggle-char-ref-extra-display): Use font-lock, and | ||
| 14 | font-lock-extend-region-functions in particular, to fontify | ||
| 15 | nxml-mode buffers. | ||
| 16 | (nxml-debug-region): New debugging helper function. | ||
| 17 | |||
| 18 | * nxml/nxml-rap.el (nxml-clear-inside, nxml-set-inside) | ||
| 19 | (nxml-scan-after-change, nxml-move-tag-backwards): Adapt for | ||
| 20 | font-lock changes. | ||
| 21 | |||
| 22 | * nxml/nxml-util.el (nxml-debug, nxml-debug-change) | ||
| 23 | (nxml-debug-set-inside, nxml-debug-clear-inside): New debugging | ||
| 24 | functions. | ||
| 25 | (nxml-with-degradation-on-error): New helper macro. | ||
| 26 | |||
| 1 | 2008-06-06 Martin Rudalics <rudalics@gmx.at> | 27 | 2008-06-06 Martin Rudalics <rudalics@gmx.at> |
| 2 | 28 | ||
| 3 | * window.el (display-buffer): Remove dead call to get-lru-window. | 29 | * window.el (display-buffer): Remove dead call to get-lru-window. |
diff --git a/lisp/nxml/nxml-util.el b/lisp/nxml/nxml-util.el index 2e90dfc32dc..1f904a2272f 100644 --- a/lisp/nxml/nxml-util.el +++ b/lisp/nxml/nxml-util.el | |||
| @@ -27,9 +27,6 @@ | |||
| 27 | (defconst nxml-debug nil | 27 | (defconst nxml-debug nil |
| 28 | "enable nxml debugging. effective only at compile time") | 28 | "enable nxml debugging. effective only at compile time") |
| 29 | 29 | ||
| 30 | (eval-when-compile | ||
| 31 | (require 'cl)) | ||
| 32 | |||
| 33 | (defsubst nxml-debug (format &rest args) | 30 | (defsubst nxml-debug (format &rest args) |
| 34 | (when nxml-debug | 31 | (when nxml-debug |
| 35 | (apply #'message format args))) | 32 | (apply #'message format args))) |