From: Paul Eggert Date: Thu, 16 Feb 2017 15:55:28 +0000 (-0800) Subject: * src/buffer.h: Fix indenting. X-Git-Tag: emacs-26.0.90~813 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b544b676473dedf34c6cb6a3315bec1f42d7162;p=emacs.git * src/buffer.h: Fix indenting. --- diff --git a/src/buffer.h b/src/buffer.h index f53212e3120..a2bdc4e7294 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -1375,7 +1375,8 @@ upcase (int c) } /* True if C is upper case. */ -INLINE bool uppercasep (int c) +INLINE bool +uppercasep (int c) { return downcase (c) != c; }