emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/zig-mode 604484c 039/104: M-x untabify


From: ELPA Syncer
Subject: [nongnu] elpa/zig-mode 604484c 039/104: M-x untabify
Date: Sun, 29 Aug 2021 11:36:59 -0400 (EDT)

branch: elpa/zig-mode
commit 604484c5fa666be76becea72d5b85c40a1215f62
Author: Xu Chunyang <mail@xuchunyang.me>
Commit: Xu Chunyang <mail@xuchunyang.me>

    M-x untabify
    
    The whole base is using spaces for indentation, let's respect that.
---
 zig-mode.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/zig-mode.el b/zig-mode.el
index 2fbb0c3..26db290 100644
--- a/zig-mode.el
+++ b/zig-mode.el
@@ -266,8 +266,8 @@
     ;; Multiline strings
     ("\\(\\\\\\)\\\\"
      (1 (prog1 "|"
-         (goto-char (match-end 0))
-         (zig-syntax-propertize-to-newline-if-in-multiline-str end)))))
+          (goto-char (match-end 0))
+          (zig-syntax-propertize-to-newline-if-in-multiline-str end)))))
    (point) end))
 
 (defun zig-mode-syntactic-face-function (state)
@@ -287,15 +287,15 @@
 (defun zig-re-structure-def-imenu (stype)
   "Construct a regular expression for strucutres definitions of type STYPE."
   (concat (zig-re-word "const") "[[:space:]]+"
-                 (zig-re-grab zig-re-identifier)
-                 ".*"
-                 (zig-re-word stype)))
+          (zig-re-grab zig-re-identifier)
+          ".*"
+          (zig-re-word stype)))
 
 (defvar zig-imenu-generic-expression
   (append (mapcar #'(lambda (x)
-                                         (list (capitalize x) 
(zig-re-structure-def-imenu x) 1))
-                                 '("enum" "struct" "union"))
-                 `(("Fn" ,(zig-re-definition "fn") 1))))
+                      (list (capitalize x) (zig-re-structure-def-imenu x) 1))
+                  '("enum" "struct" "union"))
+          `(("Fn" ,(zig-re-definition "fn") 1))))
 
 ;;;###autoload
 (define-derived-mode zig-mode prog-mode "Zig"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]