[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/editorconfig-cc 031ef9c1c1 081/351: Add one variable ed
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/editorconfig-cc 031ef9c1c1 081/351: Add one variable editorconfig-properties-hash |
Date: |
Thu, 13 Jun 2024 18:38:43 -0400 (EDT) |
branch: scratch/editorconfig-cc
commit 031ef9c1c119b7e8157b3f47af2d922f43564f9a
Author: 10sr <8slashes+git@gmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Add one variable editorconfig-properties-hash
---
editorconfig.el | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/editorconfig.el b/editorconfig.el
index 7d9ea968cd..3ea489d7a2 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -181,6 +181,13 @@ NOTE: Only the **buffer local** value of VARIABLE will be
set."
'editorconfig-indentation-alist
"0.5")
+(defvar editorconfig-properties-hash nil
+ "Hash object of EditorConfig properties for current buffer.
+Set by `editorconfig-apply' and nil if that is not invoked in current buffer
+yet.")
+(make-variable-buffer-local 'editorconfig-properties-hash)
+
+
(defun editorconfig-string-integer-p (string)
"Return non-nil if STRING represents integer."
(if (stringp string)
@@ -259,6 +266,7 @@ It calls `editorconfig-get-properties-from-exec' if
(error "Invalid editorconfig-get-properties-function value"))
(let ((props (funcall editorconfig-get-properties-function)))
(progn
+ (setq editorconfig-properties-hash props)
(editorconfig-set-coding-system
(gethash 'end_of_line props)
(gethash 'charset props))
- [nongnu] scratch/editorconfig-cc b08e13aefa 042/351: Add files used to test core functions, (continued)
- [nongnu] scratch/editorconfig-cc b08e13aefa 042/351: Add files used to test core functions, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d776cdc5ee 020/351: Support max_line_length., Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d83aba5206 055/351: Bump version: 0.6.1, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc b4911d662f 075/351: Already 2016 :) Happy new year!, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 75139b95da 059/351: Use dedicated functions to manipulate hook, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc ca854b55ff 064/351: Update README for charset support, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 649e645106 076/351: Bump version to 0.7.2, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc de2b791957 083/351: Add editorconfig-exclude-modes, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 044453e7ac 080/351: Add editorconfig-conf-mode, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc c93d216f39 087/351: Do not check metadata of files other than editorconfig.el, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 031ef9c1c1 081/351: Add one variable editorconfig-properties-hash,
Stefan Monnier <=
- [nongnu] scratch/editorconfig-cc 13f3c4951c 084/351: Bump required editorconfi-core version, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 9bd6af5f0e 097/351: Add EditorConfig group definition, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc ca7aeff4b3 159/351: Add variable to disable indent_size when conditions are met for lisp, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc b1d254fd14 122/351: Add a :lighter "EditorConfig" for editorconfig-mode., Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 6f7137e593 113/351: Simplify definition of string-integer-p (#96), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 5034a3ae16 145/351: Add function to open nearest .editorconfig file (#131), Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc 851c96f125 116/351: Update README.md, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d02b7027ae 132/351: Add plugin-tests submodule, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc a09b197c76 156/351: Add two test cases for fnmatch, Stefan Monnier, 2024/06/13
- [nongnu] scratch/editorconfig-cc d5c50cb9d7 102/351: Update README: add information about customize-variable., Stefan Monnier, 2024/06/13