summaryrefslogtreecommitdiff
path: root/lisp/hexl.el
diff options
context:
space:
mode:
authorMasatake YAMATO <jet@gyve.org>2006-11-30 15:55:14 +0000
committerMasatake YAMATO <jet@gyve.org>2006-11-30 15:55:14 +0000
commit6ac2ae62e26f7bc9d4012d14cc3294a2abc5dc38 (patch)
tree6811f87236e13b22fc3c0f50afb202016fe13943 /lisp/hexl.el
parent33fac69773cb682f32d9ae46f6a0ce4e2740d372 (diff)
downloademacs-6ac2ae62e26f7bc9d4012d14cc3294a2abc5dc38.tar.gz
(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.
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r--lisp/hexl.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el
index ff7c4bf480e..5cb30e53862 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -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)