[PATCH] D143560: clang-format.el: fix warnings
Augustin Fabre via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 8 05:52:25 PST 2023
augfab updated this revision to Diff 495815.
augfab edited the summary of this revision.
augfab added a comment.
Applied suggestions.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143560/new/
https://reviews.llvm.org/D143560
Files:
clang/tools/clang-format/clang-format.el
Index: clang/tools/clang-format/clang-format.el
===================================================================
--- clang/tools/clang-format/clang-format.el
+++ clang/tools/clang-format/clang-format.el
@@ -82,7 +82,7 @@
(let* ((children (xml-node-children node))
(text (car children)))
(cl-case (xml-node-name node)
- ('replacement
+ (replacement
(let* ((offset (xml-get-attribute-or-nil node 'offset))
(length (xml-get-attribute-or-nil node 'length)))
(when (or (null offset) (null length))
@@ -93,7 +93,7 @@
(setq offset (string-to-number offset))
(setq length (string-to-number length))
(push (list offset length text) replacements)))
- ('cursor
+ (cursor
(setq cursor (string-to-number text)))))))
;; Sort by decreasing offset, length.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143560.495815.patch
Type: text/x-patch
Size: 944 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230208/037bb4ac/attachment.bin>
More information about the cfe-commits
mailing list