]> git.eshelyaron.com Git - emacs.git/commitdiff
(hexl-hex-char-to-integer, hexl-oct-char-to-integer): Fix error format string.
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:16:11 +0000 (23:16 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:16:11 +0000 (23:16 +0000)
lisp/hexl.el

index 358b1f2ff39374edf3a0703ac4bac2142841c648..ae071b688594670a280741d253f563ff9bc9ff26 100644 (file)
@@ -584,13 +584,13 @@ You may also type up to 3 octal digits, to insert a character with that code"
     (let ((ch (logior character 32)))
       (if (and (>= ch ?a) (<= ch ?f))
          (- ch (- ?a 10))
-       (error (format "Invalid hex digit `%c'." ch))))))
+       (error "Invalid hex digit `%c'." ch)))))
 
 (defun hexl-oct-char-to-integer (character)
   "Take a char and return its value as if it was a octal digit."
   (if (and (>= character ?0) (<= character ?7))
       (- character ?0)
-    (error (format "Invalid octal digit `%c'." character))))
+    (error "Invalid octal digit `%c'." character)))
 
 (defun hexl-printable-character (ch)
   "Return a displayable string for character CH."