Function: buffer-narrowed-p
buffer-narrowed-p is a byte-compiled function defined in subr.el.gz.
Signature
(buffer-narrowed-p)
Documentation
Return non-nil if the current buffer is narrowed.
Probably introduced at or before Emacs version 24.3.
Aliases
org-buffer-narrowed-p (obsolete since 9.0)
Source Code
;; Defined in /usr/src/emacs/lisp/subr.el.gz
;;;; Misc. useful functions.
(defsubst buffer-narrowed-p ()
"Return non-nil if the current buffer is narrowed."
(/= (- (point-max) (point-min)) (buffer-size)))