Fix bug#5313: editing files in hexl-mode corrupts file

* hexl.el (hexl-printable-character): Fix check of `hexl-iso',
  which is always a string.
This commit is contained in:
Juanma Barranquero 2010-01-14 15:37:13 +01:00
parent 8794c483ae
commit 9c23ca4755
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2010-01-14 Juanma Barranquero <lekktu@gmail.com>
* hexl.el (hexl-printable-character): Fix check of `hexl-iso',
which is always a string. (Bug#5313)
2010-01-14 Juanma Barranquero <lekktu@gmail.com>
* progmodes/ada-xref.el (ada-default-prj-properties):

View file

@ -779,11 +779,11 @@ This discards the buffer's undo information."
(defun hexl-printable-character (ch)
"Return a displayable string for character CH."
(format "%c" (if hexl-iso
(if (or (< ch 32) (and (>= ch 127) (< ch 160)))
(format "%c" (if (equal hexl-iso "")
(if (or (< ch 32) (>= ch 127))
46
ch)
(if (or (< ch 32) (>= ch 127))
(if (or (< ch 32) (and (>= ch 127) (< ch 160)))
46
ch))))