Function: hexl-follow-ascii-find

hexl-follow-ascii-find is a byte-compiled function defined in hexl.el.gz.

Signature

(hexl-follow-ascii-find)

Documentation

Find and highlight the ASCII element corresponding to current point.

Source Code

;; Defined in /usr/src/emacs/lisp/hexl.el.gz
(defun hexl-follow-ascii-find ()
  "Find and highlight the ASCII element corresponding to current point."
  (let ((pos (+ (hexl-ascii-start-column)
		(- (point) (current-column))
		(mod (hexl-current-address) 16))))
    (move-overlay hexl-ascii-overlay pos (1+ pos))
    ))