Function: longlines-show-region
longlines-show-region is a byte-compiled function defined in
longlines.el.gz.
Signature
(longlines-show-region BEG END)
Documentation
Make hard newlines between BEG and END visible.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/longlines.el.gz
(defun longlines-show-region (beg end)
"Make hard newlines between BEG and END visible."
(let* ((pmin (min beg end))
(pmax (max beg end))
(pos (text-property-not-all pmin pmax 'hard nil))
(mod (buffer-modified-p))
(buffer-undo-list t)
(inhibit-read-only t)
(inhibit-modification-hooks t)
buffer-file-name buffer-file-truename)
(while pos
(put-text-property pos (1+ pos) 'display
(copy-sequence longlines-show-effect))
(setq pos (text-property-not-all (1+ pos) pmax 'hard nil)))
(restore-buffer-modified-p mod)))