diff options
| author | Masatake YAMATO | 2005-08-23 03:38:23 +0000 |
|---|---|---|
| committer | Masatake YAMATO | 2005-08-23 03:38:23 +0000 |
| commit | 12d96c20e508352f74e00cd9101b3b9be378075e (patch) | |
| tree | 445b78f8f9bb53228b18212f957eb58b7eb0047a | |
| parent | 16691d29c144224aba088319fece5bac687f2dc8 (diff) | |
| download | emacs-12d96c20e508352f74e00cd9101b3b9be378075e.tar.gz emacs-12d96c20e508352f74e00cd9101b3b9be378075e.zip | |
* hexl.el (hexl-print-current-point-info): Fix simple spelling error.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/hexl.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3af80f33359..b6e89b0c9ad 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-08-23 Ed Swarthout <ed.swarthout@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * hexl.el (hexl-print-current-point-info): Fix simple spelling | ||
| 4 | error. | ||
| 5 | |||
| 1 | 2005-08-22 Juri Linkov <juri@jurta.org> | 6 | 2005-08-22 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | * faces.el (set-face-underline): Delete this duplicate function | 8 | * faces.el (set-face-underline): Delete this duplicate function |
diff --git a/lisp/hexl.el b/lisp/hexl.el index abafba30267..45044da0985 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el | |||
| @@ -426,7 +426,7 @@ Ask the user for confirmation." | |||
| 426 | 426 | ||
| 427 | (defun hexl-print-current-point-info () | 427 | (defun hexl-print-current-point-info () |
| 428 | "Return current hexl-address in string. | 428 | "Return current hexl-address in string. |
| 429 | This function is indented to be used as eldoc callback." | 429 | This function is intended to be used as eldoc callback." |
| 430 | (let ((addr (hexl-current-address))) | 430 | (let ((addr (hexl-current-address))) |
| 431 | (format "Current address is %d/0x%08x" addr addr))) | 431 | (format "Current address is %d/0x%08x" addr addr))) |
| 432 | 432 | ||