diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-08-26 16:40:03 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-08-26 16:40:03 +0000 |
commit | 165b428351b79a861c1eeed2cc6264d9141fa5a0 (patch) | |
tree | e6ff657c200f84431be8acf9ab7b3770190aa268 /lisp/hexl.el | |
parent | 299248aa623bd357608cef44cf56728d9d37231b (diff) | |
download | emacs-165b428351b79a861c1eeed2cc6264d9141fa5a0.tar.gz |
(hexl-insert-multibyte-char, hexl-insert-char): Remove
periods from the end of error message strings. From Pavel
Janik <Pavel@Janik.cz>.
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 ca08405cd10..1f65ca8309e 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -703,7 +703,7 @@ and their encoded form is inserted byte by byte." (hexl-insert-char ch num)) ((eq charset 'unknown) (error - "0x%x -- invalid character code; use \\[hexl-insert-hex-string]." + "0x%x -- invalid character code; use \\[hexl-insert-hex-string]" ch)) (t (let ((encoded (encode-coding-char ch coding)) @@ -723,7 +723,7 @@ and their encoded form is inserted byte by byte." ch internal-hex)) (setq encoded internal) (error - "Can't encode `0x%x' with this buffer's coding system; try \\[hexl-insert-hex-string]." + "Can't encode `0x%x' with this buffer's coding system; try \\[hexl-insert-hex-string]" ch))) (while (> num 0) (mapc @@ -744,7 +744,7 @@ and their encoded form is inserted byte by byte." CH must be a unibyte character whose value is between 0 and 255." (if (or (< ch 0) (> ch 255)) - (error "Invalid character 0x%x -- must be in the range [0..255].")) + (error "Invalid character 0x%x -- must be in the range [0..255]")) (let ((address (hexl-current-address t))) (while (> num 0) (let ((hex-position |