branch: scratch/editorconfig-cc
commit 2e55840057c6b517abaae26af01cb7e5aec8dc20
Author: 10sr <[email protected]>
Commit: Stefan Monnier <[email protected]>
Use elisp core by default
Closes #198
---
editorconfig.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/editorconfig.el b/editorconfig.el
index 5a02d58214..9b395eed4e 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -72,7 +72,7 @@ Used by `editorconfig-call-editorconfig-exec'."
"0.5")
(defcustom editorconfig-get-properties-function
- 'editorconfig-get-properties
+ 'editorconfig-core-get-properties-hash
"A function which gets EditorConofig properties for current buffer.
This function will be called with no argument and should return a
@@ -90,14 +90,14 @@ your init.el:
Possible known values are:
-* `editorconfig-get-properties' (default)
+* `editorconfig-core-get-properties-hash' (default)
+ * Always use built-in Emacs-Lisp implementation to get properties
+* `editorconfig-get-properties'
* Use `editorconfig-get-properties-from-exec' when
`editorconfig-exec-path' executable executable is found, otherwise
use `editorconfig-core-get-properties-hash'
* `editorconfig-get-properties-from-exec'
- * Get properties by executing EditorConfig executable
-* `editorconfig-core-get-properties-hash'
- * Always use built-in Emacs-Lisp implementation to get properties"
+ * Get properties by executing EditorConfig executable"
:type 'function
:group 'editorconfig)
(define-obsolete-variable-alias