# HG changeset patch # User Karl Heuer # Date 820798830 0 # Node ID 118f028ac3ddc951cda654fcc0a54b6d37a53544 # Parent 5ab7ad0d2324e9a7387fd97cf85ed115956479bc (hexl-program, hexl-beginning-of-1k-page, hexl-end-of-1k-page, hexl-beginning-of-512b-page, hexl-end-of-512b-page): Doc fix. diff -r 5ab7ad0d2324 -r 118f028ac3dd lisp/hexl.el --- a/lisp/hexl.el Thu Jan 04 23:39:26 1996 +0000 +++ b/lisp/hexl.el Thu Jan 04 23:40:30 1996 +0000 @@ -53,9 +53,9 @@ ;; (defvar hexl-program "hexl" - "The program that will hexlify and de-hexlify its stdin. + "The program that will hexlify and dehexlify its stdin. `hexl-program' will always be concatenated with `hexl-options' -and \"-de\" when dehexlfying a buffer.") +and \"-de\" when dehexlifying a buffer.") (defvar hexl-iso "" "If your emacs can handle ISO characters, this should be set to @@ -517,12 +517,12 @@ (recenter 0)))) (defun hexl-beginning-of-1k-page () - "Goto to beginning of 1k boundry." + "Go to beginning of 1k boundary." (interactive) (hexl-goto-address (logand (hexl-current-address) -1024))) (defun hexl-end-of-1k-page () - "Goto to end of 1k boundry." + "Go to end of 1k boundary." (interactive) (hexl-goto-address (let ((address (logior (hexl-current-address) 1023))) (if (> address hexl-max-address) @@ -530,12 +530,12 @@ address))) (defun hexl-beginning-of-512b-page () - "Goto to beginning of 512 byte boundry." + "Go to beginning of 512 byte boundary." (interactive) (hexl-goto-address (logand (hexl-current-address) -512))) (defun hexl-end-of-512b-page () - "Goto to end of 512 byte boundry." + "Go to end of 512 byte boundary." (interactive) (hexl-goto-address (let ((address (logior (hexl-current-address) 511))) (if (> address hexl-max-address)