Function: pixel-fill--char-kinsoku-bol-p--inliner

pixel-fill--char-kinsoku-bol-p--inliner is a function defined in pixel-fill.el.gz.

Signature

(pixel-fill--char-kinsoku-bol-p--inliner INLINE--FORM CHAR)

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/pixel-fill.el.gz
;; Closure converted to defun by helpful.
(defun pixel-fill--char-kinsoku-bol-p--inliner
    (inline--form char)
  (ignore inline--form)
  (catch 'inline--just-use
    (let*
	((exp char)
	 (char
	  (if
	      (macroexp-copyable-p exp)
	      exp
	    (make-symbol "char")))
	 (body
	  (list 'and
		(list 'not
		      (list 'eq char 39))
		(list 'aref
		      (list 'char-category-set char)
		      62))))
      (if
	  (eq char exp)
	  body
	(macroexp-let*
	 (list
	  (list char exp))
	 body)))))