aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMasatake YAMATO <[email protected]>2005-08-10 18:15:50 +0000
committerMasatake YAMATO <[email protected]>2005-08-10 18:15:50 +0000
commit2d77d354f1a21047ad037c52e3a6978e783a51a5 (patch)
tree7190d425ca2c8d9ca9503a0533a4a2d192237ac8 /lisp
parent078905c4c9c651bea5ea0c4d4fe661014a1be9e6 (diff)
(hexl-address-region):
(hexl-ascii-region, hexl-font-lock-keywords): (hexl-highlight-line-range): Use the term "region" instead of "area" for consistency with the other symbols defined in hexl.el.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/hexl.el10
2 files changed, 13 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 43c4af17f9..8668a91a90 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
+2005-08-11 Masatake YAMATO <[email protected]>
+
+ * hexl.el (hexl-address-region):
+ (hexl-ascii-region, hexl-font-lock-keywords):
+ (hexl-highlight-line-range): Use the term "region"
+ instead of "area" for consistency with the other symbols
+ defined in hexl.el.
+
2005-08-09 Luc Teirlinck <[email protected]>
* menu-bar.el (menu-bar-options-save): Move `display-time-mode' to
diff --git a/lisp/hexl.el b/lisp/hexl.el
index 20430284a5..abafba3026 100644
--- a/lisp/hexl.el
+++ b/lisp/hexl.el
@@ -85,12 +85,12 @@ Quoting cannot be used, so the arguments cannot themselves contain spaces."
:options '(hexl-follow-line hexl-activate-ruler turn-on-eldoc-mode)
:group 'hexl)
-(defface hexl-address-area
+(defface hexl-address-region
'((t (:inherit header-line)))
"Face used in address are of hexl-mode buffer."
:group 'hexl)
-(defface hexl-ascii-area
+(defface hexl-ascii-region
'((t (:inherit header-line)))
"Face used in ascii are of hexl-mode buffer."
:group 'hexl)
@@ -121,8 +121,8 @@ Quoting cannot be used, so the arguments cannot themselves contain spaces."
(defvar hexl-font-lock-keywords
'(("^\\([0-9a-f]+:\\).\\{40\\} \\(.+$\\)"
;; "^\\([0-9a-f]+:\\).+ \\(.+$\\)"
- (1 'hexl-address-area t t)
- (2 'hexl-ascii-area t t)))
+ (1 'hexl-address-region t t)
+ (2 'hexl-ascii-region t t)))
"Font lock keywords used in `hexl-mode'.")
;; routines
@@ -935,7 +935,7 @@ Customize the variable `hexl-follow-ascii' to disable this feature."
(hl-line-mode 1))
(defun hexl-highlight-line-range ()
- "Return the range of address area for the point.
+ "Return the range of address region for the point.
This function is assumed to be used as call back function for `hl-line-mode'."
(cons
(line-beginning-position)