Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Oct 1, 2023
1 parent 0626acc commit 3a9d09b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lisp/_prepare.el
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,9 @@ Simply remove `--eask' for each option, like `--eask--strict' to `--strict'."
eask-argv))

(defun eask-args (&optional index)
"Get all arguments except options."
"Get all arguments except options
If the optional argument INDEX is non-nil, return the element."
(let ((argv (cl-remove-if (lambda (arg) (member arg eask--option-switches)) eask-argv))
(args) (skip-next))
(dolist (arg argv)
Expand Down

0 comments on commit 3a9d09b

Please sign in to comment.