[clang-tools-extra] r283736 - Use `let' instead of `let*' in one place where `let*' isn't necessary

Manuel Klimek via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 10 03:22:40 PDT 2016


Author: klimek
Date: Mon Oct 10 05:22:40 2016
New Revision: 283736

URL: http://llvm.org/viewvc/llvm-project?rev=283736&view=rev
Log:
Use `let' instead of `let*' in one place where `let*' isn't necessary

Differential Revision: https://reviews.llvm.org/D25395

Patch by Philipp Stephani.

Modified:
    clang-tools-extra/trunk/include-fixer/tool/clang-include-fixer.el

Modified: clang-tools-extra/trunk/include-fixer/tool/clang-include-fixer.el
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/include-fixer/tool/clang-include-fixer.el?rev=283736&r1=283735&r2=283736&view=diff
==============================================================================
--- clang-tools-extra/trunk/include-fixer/tool/clang-include-fixer.el (original)
+++ clang-tools-extra/trunk/include-fixer/tool/clang-include-fixer.el Mon Oct 10 05:22:40 2016
@@ -94,9 +94,9 @@ CALLBACK is called after the process fin
 called with a single argument, the buffer where standard output
 has been inserted.  ARGS is a list of additional command line
 arguments.  Return the new process object."
-  (let* ((stdin (current-buffer))
-         (stdout (generate-new-buffer "*clang-include-fixer output*"))
-         (stderr (generate-new-buffer "*clang-include-fixer errors*")))
+  (let ((stdin (current-buffer))
+        (stdout (generate-new-buffer "*clang-include-fixer output*"))
+        (stderr (generate-new-buffer "*clang-include-fixer errors*")))
     (make-process :name "clang-include-fixer"
                   :buffer stdout
                   :command (clang-include-fixer--command args)




More information about the cfe-commits mailing list