]> git.eshelyaron.com Git - emacs.git/commitdiff
(hexl-mode-old-hl-line-range-function): New variable
authorMasatake YAMATO <jet@gyve.org>
Thu, 30 Nov 2006 15:55:14 +0000 (15:55 +0000)
committerMasatake YAMATO <jet@gyve.org>
Thu, 30 Nov 2006 15:55:14 +0000 (15:55 +0000)
(hexl-mode-old-hl-line-face): New variable
(hexl-mode, hexl-mode-exit): Fix the highlighting of the current line when exit from the hexl-mode.

lisp/ChangeLog
lisp/hexl.el

index 12ba2ee744953fc4673818de7b11f924e6ff478c..fadb2e2501b481fc1f454dbe215dbb81fb2c5353 100644 (file)
@@ -1,3 +1,10 @@
+2006-11-29  Alin C. Soare  <alinsoar@voila.fr>  (tiny change)
+
+       * lisp/hexl.el (hexl-mode-old-hl-line-range-function): New variable
+       (hexl-mode-old-hl-line-face): New variable
+       (hexl-mode, hexl-mode-exit): Fix the highlighting of the current
+       line when exit from the hexl-mode.
+
 2006-11-30  Juanma Barranquero  <lekktu@gmail.com>
 
        * international/fontset.el (create-fontset-from-ascii-font)
index ff7c4bf480e6808a5e25f5f7a0d7fdd9e702d385..5cb30e53862d14b2492bb4ed1d767928a3cec906 100644 (file)
@@ -104,6 +104,8 @@ Quoting cannot be used, so the arguments cannot themselves contain spaces."
 (defvar ruler-mode-ruler-function)
 (defvar hl-line-mode)
 
+(defvar hexl-mode-old-hl-line-range-function)
+(defvar hexl-mode-old-hl-line-face)
 (defvar hexl-mode-old-hl-line-mode)
 (defvar hexl-mode-old-local-map)
 (defvar hexl-mode-old-mode-name)
@@ -259,6 +261,11 @@ You can use \\[hexl-find-file] to visit a file in Hexl mode.
     (setq hexl-mode-old-hl-line-mode
          (and (boundp 'hl-line-mode) hl-line-mode))
 
+    (set (make-local-variable 'hexl-mode-old-hl-line-range-function)
+         hl-line-range-function)
+    (set (make-local-variable 'hexl-mode-old-hl-line-face)
+         hl-line-face)
+
     (make-local-variable 'hexl-mode-old-syntax-table)
     (setq hexl-mode-old-syntax-table (syntax-table))
     (set-syntax-table (standard-syntax-table))
@@ -388,6 +395,10 @@ With arg, don't unhexlify buffer."
       (ruler-mode 0))
   (if (and (boundp 'hl-line-mode) hl-line-mode (not hexl-mode-old-hl-line-mode))
       (hl-line-mode 0))
+
+  (set 'hl-line-range-function hexl-mode-old-hl-line-range-function)
+  (set 'hl-line-face hexl-mode-old-hl-line-face)
+
   (setq require-final-newline hexl-mode-old-require-final-newline)
   (setq mode-name hexl-mode-old-mode-name)
   (setq isearch-search-fun-function hexl-mode-old-isearch-search-fun-function)