Skip to content

Commit

Permalink
Change symbol to function (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuco1 authored and bbatsov committed Sep 18, 2016
1 parent 3e56c2f commit 076edbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Two example filter functions are shipped by default -
`projectile-buffers-with-file' and
`projectile-buffers-with-file-or-process'."
:group 'projectile
:type 'symbol)
:type 'function)

(defcustom projectile-project-name nil
"If this value is non-nil, it will be used as project name.
Expand All @@ -278,7 +278,7 @@ It has precedence over function `projectile-project-name-function'."
If variable `projectile-project-name' is non-nil, this function will not be used."
:group 'projectile
:type 'symbol
:type 'function
:package-version '(projectile . "0.14.0"))

(defcustom projectile-project-root-files
Expand Down Expand Up @@ -425,7 +425,7 @@ it for functions working with buffers."
Any function that does not take arguments will do."
:group 'projectile
:type 'symbol)
:type 'function)

(defcustom projectile-find-dir-includes-top-level nil
"If true, add top-level dir to options offered by `projectile-find-dir'."
Expand Down

0 comments on commit 076edbc

Please sign in to comment.