]> code.delx.au - gnu-emacs-elpa/commitdiff
counsel.el (counsel-pt): Remove unused args
authorOleh Krehel <ohwoeowho@gmail.com>
Mon, 14 Mar 2016 17:43:24 +0000 (18:43 +0100)
committerOleh Krehel <ohwoeowho@gmail.com>
Mon, 14 Mar 2016 17:43:24 +0000 (18:43 +0100)
counsel.el

index 39365975ec4650d07e7c8ff314e988f5705e6b82..0a493f88307ee4eedf3c6bd2d2651c9e325c334e 100644 (file)
@@ -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)))