Function: org-remove-blank-lines

org-remove-blank-lines is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-remove-blank-lines S)

Documentation

Remove blank lines in S.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-remove-blank-lines (s)
  "Remove blank lines in S."
  (replace-regexp-in-string (rx "\n" (1+ (0+ space) "\n")) "\n" s))