Function: cperl-build-manpage

cperl-build-manpage is an interactive and byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-build-manpage)

Documentation

Create a virtual manpage in Emacs from the POD in the file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
;; Updated version by him too
(defun cperl-build-manpage ()
  "Create a virtual manpage in Emacs from the POD in the file."
  (interactive)
  (require 'man)
  (let ((manual-program "perldoc")
	(Man-switches ""))
    (Man-getpage-in-background buffer-file-name)))