Function: flymake-proc--replace-region

flymake-proc--replace-region is a byte-compiled function defined in flymake-proc.el.gz.

This function is obsolete since 31; use replace-region-contents instead.

Signature

(flymake-proc--replace-region BEG END REP)

Documentation

Replace text in BUFFER in region (BEG END) with REP.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake-proc.el.gz
;;; XXX: remove
(defun flymake-proc--replace-region (beg end rep)
  "Replace text in BUFFER in region (BEG END) with REP."
  (declare (obsolete replace-region-contents "31"))
  (replace-region-contents beg end rep 0))