diff options
Diffstat (limited to 'lisp/hexl.el')
-rw-r--r-- | lisp/hexl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/hexl.el b/lisp/hexl.el index 8bfc1fb89e4..79dd5c40c69 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -93,7 +93,7 @@ as that will override any bit grouping options set here." "Face used in address area of Hexl mode buffer.") (defface hexl-ascii-region - ;; Copied from `header-line`. We used to inherit from it, but that + ;; Copied from 'header-line'. We used to inherit from it, but that ;; looks awful when the headerline is given a variable-pitch font or ;; (even worse) a 3D look. '((((class color grayscale) (background light)) @@ -539,7 +539,7 @@ This function is intended to be used as eldoc callback." (+ N (/ N (/ hexl-bits 4))) )) ) ; char offset into hexl display line (defun hexl-goto-address (address) - "Go to hexl-mode (decimal) address ADDRESS. + "Go to `hexl-mode' (decimal) address ADDRESS. Signal error if ADDRESS is out of range." (interactive "nAddress: ") (if (or (< address 0) (> address hexl-max-address)) @@ -1165,7 +1165,7 @@ This function is assumed to be used as callback function for `hl-line-mode'." ;; startup stuff. -(easy-menu-define hexl-menu hexl-mode-map "Hexl Mode menu" +(easy-menu-define hexl-menu hexl-mode-map "Hexl Mode menu." '("Hexl" :help "Hexl-specific Features" |