Function: pcomplete/bzip2

pcomplete/bzip2 is an autoloaded and byte-compiled function defined in pcmpl-gnu.el.gz.

Signature

(pcomplete/bzip2)

Documentation

Completion for bzip2.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-gnu.el.gz
;;;###autoload
(defun pcomplete/bzip2 ()
  "Completion for `bzip2'."
  (pcomplete-opt "hdzkftcqvLVs123456789")
  (while (pcomplete-here
	  (pcmpl-gnu-bzipped-files
	   (catch 'has-d-flag
	     (let ((args pcomplete-args))
	       (while args
		 (if (string-match "\\`-.*[dt]" (car args))
		     (throw 'has-d-flag t))
		 (setq args (cdr args)))))))))