Function: forge--buffer-substring-no-properties
forge--buffer-substring-no-properties is a byte-compiled function
defined in forge-core.el.
Signature
(forge--buffer-substring-no-properties &optional START END)
Documentation
Like buffer-substring-no-properties but the arguments are optional.
Optional START defaults to the value of point-min.
Optional END defaults to the value of point-max.
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-core.el
(defun forge--buffer-substring-no-properties (&optional start end)
"Like `buffer-substring-no-properties' but the arguments are optional.
Optional START defaults to the value of `point-min'.
Optional END defaults to the value of `point-max'."
(buffer-substring-no-properties (or start (point-min))
(or end (point-max))))