Function: org-link--decode-single-byte-sequence

org-link--decode-single-byte-sequence is a byte-compiled function defined in ol.el.gz.

Signature

(org-link--decode-single-byte-sequence HEX)

Documentation

Unhexify hex-encoded single byte character sequence HEX.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defun org-link--decode-single-byte-sequence (hex)
  "Unhexify hex-encoded single byte character sequence HEX."
  (mapconcat (lambda (byte)
	       (char-to-string (string-to-number byte 16)))
	     (cdr (split-string hex "%"))
	     ""))