Function: longlines-show-hard-newlines

longlines-show-hard-newlines is an interactive and byte-compiled function defined in longlines.el.gz.

Signature

(longlines-show-hard-newlines &optional ARG)

Documentation

Make hard newlines visible by adding a face.

With optional argument ARG, make the hard newlines invisible again.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/longlines.el.gz
;;; Showing the effect of hard newlines in the buffer

(defun longlines-show-hard-newlines (&optional arg)
  "Make hard newlines visible by adding a face.
With optional argument ARG, make the hard newlines invisible again."
  (interactive "P")
    (if arg
        (longlines-unshow-hard-newlines)
      (setq longlines-showing t)
      (longlines-show-region (point-min) (point-max))))