]> git.eshelyaron.com Git - emacs.git/commitdiff
Add ChangeLog entries. Remove unneeded (require 'cl).
authorMichael Olson <mwolson@gnu.org>
Fri, 6 Jun 2008 16:24:04 +0000 (16:24 +0000)
committerMichael Olson <mwolson@gnu.org>
Fri, 6 Jun 2008 16:24:04 +0000 (16:24 +0000)
lisp/ChangeLog
lisp/nxml/nxml-util.el

index 156e51b1b70192e98f0e84bf22c13702a8b3762e..87d2cf6c89fb6ce9e8c8600a0628eafc380db591 100644 (file)
@@ -1,3 +1,29 @@
+2008-06-06  Daniel Colascione  <danc@merrillpress.com>
+
+       * nxml/nxml-mode.el (nxml-syntax-highlight-flag)
+       (nxml-fontify-chunk-size, nxml-clear-face, nxml-set-fontified)
+       (nxml-clear-fontified, nxml-fontify, nxml-fontify1)
+       (nxml-fontify-buffer, nxml-do-fontify): Remove obsolete variables
+       and functions.
+       (nxml-font-lock-keywords, nxml-set-face, nxml-mode)
+       (nxml-degrade, nxml-after-change)
+       (nxml-after-change1, nxml-extend-region)
+       (nxml-extend-after-change-region)
+       (nxml-extend-after-change-region1, nxml-fontify-matcher)
+       (nxml-toggle-char-ref-extra-display): Use font-lock, and
+       font-lock-extend-region-functions in particular, to fontify
+       nxml-mode buffers.
+       (nxml-debug-region): New debugging helper function.
+
+       * nxml/nxml-rap.el (nxml-clear-inside, nxml-set-inside)
+       (nxml-scan-after-change, nxml-move-tag-backwards): Adapt for
+       font-lock changes.
+
+       * nxml/nxml-util.el (nxml-debug, nxml-debug-change)
+       (nxml-debug-set-inside, nxml-debug-clear-inside): New debugging
+       functions.
+       (nxml-with-degradation-on-error): New helper macro.
+
 2008-06-06  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (display-buffer): Remove dead call to get-lru-window.
index 2e90dfc32dc820138f4ceeab2b99a825b93774c1..1f904a2272ff20719d0c1c280b76f98f167bd73d 100644 (file)
@@ -27,9 +27,6 @@
 (defconst nxml-debug nil
   "enable nxml debugging. effective only at compile time")
 
-(eval-when-compile
-  (require 'cl))
-
 (defsubst nxml-debug (format &rest args)
   (when nxml-debug
     (apply #'message format args)))