Function: cider-log--bold

cider-log--bold is a byte-compiled function defined in cider-log.el.

Signature

(cider-log--bold S)

Documentation

Return S with a bold face.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--bold (s)
  "Return S with a bold face."
  (when s (propertize (format "%s" s) 'face 'bold)))