Function: shr-char-kinsoku-bol-p

shr-char-kinsoku-bol-p is a byte-compiled function defined in shr.el.gz.

Signature

(shr-char-kinsoku-bol-p CHAR)

Documentation

Return non-nil if a line ought not to begin with CHAR.

Source Code

;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
;; KINSOKU is a Japanese word meaning a rule that should not be violated.
;; In Emacs, it is a term used for characters, e.g. punctuation marks,
;; parentheses, and so on, that should not be placed in the beginning
;; of a line or the end of a line.
(define-inline shr-char-kinsoku-bol-p (char)
  "Return non-nil if a line ought not to begin with CHAR."
  (inline-letevals (char)
    (inline-quote (and (not (eq ,char ?'))
                       (aref (char-category-set ,char) ?>)))))