Function: cal-tex-e-parbox

cal-tex-e-parbox is a byte-compiled function defined in cal-tex.el.gz.

Signature

(cal-tex-e-parbox &optional HEIGHT)

Documentation

Insert end of parbox. Optionally, force it to be a given HEIGHT.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defun cal-tex-e-parbox (&optional height)
  "Insert end of parbox.  Optionally, force it to be a given HEIGHT."
  (cal-tex-comment)
  (if height
      (cal-tex-rule "0mm" "0mm" height))
  (insert "}")
  (cal-tex-comment "end parbox"))