[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/editorconfig-cc 0e299b7528 278/351: Silence byte-compil
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/editorconfig-cc 0e299b7528 278/351: Silence byte-compiler warnings (#235) |
Date: |
Thu, 13 Jun 2024 18:39:02 -0400 (EDT) |
branch: scratch/editorconfig-cc
commit 0e299b75286066a3b526cce5937616ea661d0d95
Author: Brian Leung <29217594+leungbk@users.noreply.github.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Silence byte-compiler warnings (#235)
Move aliases before their referents
Co-authored-by: 10sr <8.slashes@gmail.com>
---
editorconfig.el | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/editorconfig.el b/editorconfig.el
index 9c7d2154c8..5e74fb9049 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -59,6 +59,10 @@ coding styles between different editors and IDEs."
:prefix "editorconfig-"
:group 'tools)
+(define-obsolete-variable-alias
+ 'edconf-exec-path
+ 'editorconfig-exec-path
+ "0.5")
(defcustom editorconfig-exec-path
"editorconfig"
"Path to EditorConfig executable.
@@ -66,11 +70,11 @@ coding styles between different editors and IDEs."
Used by `editorconfig-call-editorconfig-exec'."
:type 'string
:group 'editorconfig)
+
(define-obsolete-variable-alias
- 'edconf-exec-path
- 'editorconfig-exec-path
+ 'edconf-get-properties-function
+ 'editorconfig-get-properties-function
"0.5")
-
(defcustom editorconfig-get-properties-function
'editorconfig-core-get-properties-hash
"A function which gets EditorConofig properties for current buffer.
@@ -100,11 +104,15 @@ Possible known values are:
* Get properties by executing EditorConfig executable"
:type 'function
:group 'editorconfig)
+
(define-obsolete-variable-alias
- 'edconf-get-properties-function
- 'editorconfig-get-properties-function
+ 'edconf-custom-hooks
+ 'editorconfig-after-apply-functions
"0.5")
-
+(define-obsolete-variable-alias
+ 'editorconfig-custom-hooks
+ 'editorconfig-after-apply-functions
+ "0.7.14")
(defcustom editorconfig-after-apply-functions ()
"A list of functions after loading common EditorConfig settings.
@@ -127,14 +135,6 @@ This hook will be run even when there are no matching
sections in
\".editorconfig\", or no \".editorconfig\" file was found at all."
:type 'hook
:group 'editorconfig)
-(define-obsolete-variable-alias
- 'edconf-custom-hooks
- 'editorconfig-after-apply-functions
- "0.5")
-(define-obsolete-variable-alias
- 'editorconfig-custom-hooks
- 'editorconfig-after-apply-functions
- "0.7.14")
(defcustom editorconfig-hack-properties-functions ()
"A list of function to alter property values before applying them.
@@ -157,6 +157,10 @@ This hook will be run even when there are no matching
sections in
:type 'hook
:group 'editorconfig)
+(define-obsolete-variable-alias
+ 'edconf-indentation-alist
+ 'editorconfig-indentation-alist
+ "0.5")
(defcustom editorconfig-indentation-alist
;; For contributors: Sort modes in alphabetical order
'((apache-mode apache-indent-level)
@@ -251,10 +255,6 @@ NOTE: Only the **buffer local** value of VARIABLE will be
set."
:type '(alist :key-type symbol :value-type sexp)
:risky t
:group 'editorconfig)
-(define-obsolete-variable-alias
- 'edconf-indentation-alist
- 'editorconfig-indentation-alist
- "0.5")
(defcustom editorconfig-exclude-modes ()
"Modes in which `editorconfig-mode-apply' will not run."
- [nongnu] scratch/editorconfig-cc 4185bcfac2 210/351: Call -hack-properties-functions in editorconfig-apply, (continued)
- [nongnu] scratch/editorconfig-cc 4185bcfac2 210/351: Call -hack-properties-functions in editorconfig-apply, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 2cfbec79f9 216/351: Update core-test submodule, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 2ba007601a 219/351: Add document for editorconfig-trim-whitespaces-mode, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc f2d4539bae 228/351: Refactor handle lib, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc b303bfd220 211/351: Add test for -hack-properties-functions, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 8688e1d3bf 230/351: Revert "Add support for Emacs24.5", Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 5f5a7bf03d 237/351: Update commentary section, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 8cf419254d 246/351: Do not update submodule when running tests, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc be0973c580 291/351: Fix for coding-system set when remote files do not exist (#250), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 9bfade9437 257/351: Use dist: trusty, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 0e299b7528 278/351: Silence byte-compiler warnings (#235),
Stefan Monnier <=
- [nongnu] scratch/editorconfig-cc cf012776b4 306/351: Use new implementation by default (#263), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 0f2c33d11a 282/351: Update README 2 (#225), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 1969dd74da 271/351: Add conf-mode abbrev-table definitions (#220), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 4b25e6b404 275/351: Update CHANGELOG, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 1ff99f3eff 310/351: tests(build.yml): Use latest minor version number (#274), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 06b57e1fb7 309/351: Add emacs 28.1 to test target (#270), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 0f54515c82 325/351: Load subr-x when compiling (#302), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 217ede58d6 328/351: Revert "Update version string", Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 2458fb6f90 327/351: Update version string, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 24c8272763 321/351: Add bash-ts-mode to editorconfig-indentation-alist (#296), Stefan Monnier, 2024/06/13