Function: pcomplete/gzip

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

Signature

(pcomplete/gzip)

Documentation

Completion for gzip.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-gnu.el.gz
;; Functions:

;;;###autoload
(defun pcomplete/gzip ()
  "Completion for `gzip'."
  (let ((pcomplete-help "(gzip)"))
    (pcomplete-opt "cdfhlLnNqrStvV123456789")
    (while (pcomplete-here
	    (pcmpl-gnu-zipped-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))))))))))