[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/zig-mode 3cac32b 040/104: Drop #' since it's redundant
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/zig-mode 3cac32b 040/104: Drop #' since it's redundant |
Date: |
Sun, 29 Aug 2021 11:36:59 -0400 (EDT) |
branch: elpa/zig-mode
commit 3cac32b3e553f8153d80b168b0d0fc2471d83de7
Author: Xu Chunyang <mail@xuchunyang.me>
Commit: Xu Chunyang <mail@xuchunyang.me>
Drop #' since it's redundant
---
zig-mode.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/zig-mode.el b/zig-mode.el
index 26db290..61877e2 100644
--- a/zig-mode.el
+++ b/zig-mode.el
@@ -146,9 +146,9 @@
)
;; Definitions
- (mapcar #'(lambda (x)
- (list (zig-re-definition (car x))
- 1 (cdr x)))
+ (mapcar (lambda (x)
+ (list (zig-re-definition (car x))
+ 1 (cdr x)))
'(("const" . font-lock-variable-name-face)
("var" . font-lock-variable-name-face)
("fn" . font-lock-function-name-face)))))
@@ -292,8 +292,8 @@
(zig-re-word stype)))
(defvar zig-imenu-generic-expression
- (append (mapcar #'(lambda (x)
- (list (capitalize x) (zig-re-structure-def-imenu x) 1))
+ (append (mapcar (lambda (x)
+ (list (capitalize x) (zig-re-structure-def-imenu x) 1))
'("enum" "struct" "union"))
`(("Fn" ,(zig-re-definition "fn") 1))))
- [nongnu] elpa/zig-mode 6a3522f 084/104: Merge pull request #45 from joachimschmidt557/revert-rx, (continued)
- [nongnu] elpa/zig-mode 6a3522f 084/104: Merge pull request #45 from joachimschmidt557/revert-rx, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 88b429d 083/104: Merge pull request #46 from travv0/master, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 8f59f86 089/104: Implement beginning/end-of-defun, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 9ad0ccf 008/104: Indentation is 4 spaces by default., ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode ff0bc79 006/104: Full symbols., ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 814657c 018/104: Update syntax, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode a4f1e11 022/104: Just disable syntactic indentation (it's broken), ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 51a99d1 023/104: Add alternate install instructions to the README (#9), ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode cb485ff 034/104: Added anyerror keyword, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 1f4ebf1 035/104: section -> linksection, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 3cac32b 040/104: Drop #' since it's redundant,
ELPA Syncer <=
- [nongnu] elpa/zig-mode ab655a9 043/104: Add Commentary, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 1552e0e 058/104: Merge pull request #20 from mgxm/feat/add_zig_cli_integration, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 9d5b439 052/104: replace stdcallcc and nakedcc with callconv, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 859a4dc 071/104: Use rx macro and add more possibilities for type annotations, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode f28e0fa 067/104: var has been changed to anytype, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 9ca6876 072/104: Quote arguments passed to zig via the compile function, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 87841c7 082/104: fix broken multiline string highlighting, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 0c23862 003/104: Aestethics., ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode c298f91 019/104: Updated to latest keywords, ELPA Syncer, 2021/08/29
- [nongnu] elpa/zig-mode 4232704 013/104: Rewritten from scratch for better syntax highlighting., ELPA Syncer, 2021/08/29