Function: cal-tex-nl
cal-tex-nl is a byte-compiled function defined in cal-tex.el.gz.
Signature
(cal-tex-nl &optional SKIP COMMENT)
Documentation
End a line with \. If SKIP, then add that much spacing.
Add trailing COMMENT if present.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defun cal-tex-nl (&optional skip comment)
"End a line with \\. If SKIP, then add that much spacing.
Add trailing COMMENT if present."
(insert (format "\\\\%s"
(if skip
(format "[%s]" skip)
"")))
(cal-tex-comment comment))