Function: Man-page-from-arguments

Man-page-from-arguments is a byte-compiled function defined in man.el.gz.

Signature

(Man-page-from-arguments ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/man.el.gz
(defun Man-page-from-arguments (args)
  ;; Skip arguments and only print the page name.
  (mapconcat
   #'identity
   (delete nil
	   (mapcar
	    (lambda (elem)
	      (and (not (string-match "^-" elem))
		   elem))
	    (split-string args " ")))
   " "))