From: Saleem Abdulrasool Date: Sun, 2 Nov 2014 21:27:52 +0000 (+0000) Subject: docs: remove double carriage-return X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f13f657a4bb3aa01ef9d5e9a3e32ab95eb9eaf7;p=clang docs: remove double carriage-return The double carriage return would silence a warning due to a missing .clang-format. Permit the error to bubble through. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@221107 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ClangFormat.rst b/docs/ClangFormat.rst index b37241786b..45ea327179 100644 --- a/docs/ClangFormat.rst +++ b/docs/ClangFormat.rst @@ -96,8 +96,8 @@ This can be integrated by adding the following to your `.vimrc`: .. code-block:: vim - map :pyf /clang-format.py - imap :pyf /clang-format.py + map :pyf /clang-format.py + imap :pyf /clang-format.py The first line enables :program:`clang-format` for NORMAL and VISUAL mode, the second line adds support for INSERT mode. Change "C-K" to another binding if diff --git a/tools/clang-format/clang-format.py b/tools/clang-format/clang-format.py index 487b9ed48e..3bb89e04b1 100644 --- a/tools/clang-format/clang-format.py +++ b/tools/clang-format/clang-format.py @@ -3,7 +3,7 @@ # - Add to your .vimrc: # # map :pyf /clang-format.py -# imap :pyf /clang-format.py +# imap :pyf /clang-format.py # # The first line enables clang-format for NORMAL and VISUAL mode, the second # line adds support for INSERT mode. Change "C-I" to another binding if you