Function: c-int-to-char
c-int-to-char is a macro defined in cc-defs.el.gz.
Signature
(c-int-to-char INTEGER)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-int-to-char (integer)
;; In Emacs, a character is an integer. In XEmacs, a character is a
;; type distinct from an integer. Sometimes we need to convert integers to
;; characters. `c-int-to-char' makes this conversion, if necessary.
(declare (debug t))
(if (fboundp 'int-to-char)
`(int-to-char ,integer)
integer))