Function: woman1-B-or-I

woman1-B-or-I is a byte-compiled function defined in woman.el.gz.

Signature

(woman1-B-or-I B-OR-I)

Documentation

.B/I -- Set words of current line in bold/italic font.

B-OR-I is the appropriate complete control line.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman1-B-or-I (B-or-I)
  ".B/I -- Set words of current line in bold/italic font.
B-OR-I is the appropriate complete control line."
  ;; Should NOT concatenate the arguments!
  (insert B-or-I) ; because it might be a control line
  ;; Return to bol to process .SM/.B, .B/.if etc.
  ;; or start of first arg to hide leading control char.
  (save-excursion
    (if woman1-unquote
	(woman-unquote-args)
      (while (looking-at "^[.']") (forward-line))
      (end-of-line)
      (delete-horizontal-space))
    (insert "\\fR")))