From: Oleh Krehel Date: Mon, 14 Mar 2016 17:43:24 +0000 (+0100) Subject: counsel.el (counsel-pt): Remove unused args X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/692002decacbe48c0ee97f2cb2101bdf9d78b83f counsel.el (counsel-pt): Remove unused args --- diff --git a/counsel.el b/counsel.el index 39365975e..0a493f883 100644 --- a/counsel.el +++ b/counsel.el @@ -1340,11 +1340,10 @@ pt using `counsel-ag'." :group 'ivy) ;;;###autoload -(defun counsel-pt (&optional initial-input initial-directory) +(defun counsel-pt () "Grep for a string in the current directory using pt. This uses `counsel-ag' with `counsel-pt-base-command' replacing -`counsel-ag-base-command'. INITIAL-INPUT can be given as the -initial minibuffer input." +`counsel-ag-base-command'." (interactive) (let ((counsel-ag-base-command counsel-pt-base-command)) (call-interactively 'counsel-ag)))