]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/buffer.h: Fix indenting.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 16 Feb 2017 15:55:28 +0000 (07:55 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 16 Feb 2017 15:55:41 +0000 (07:55 -0800)
src/buffer.h

index f53212e312062016b5e988f5d9251ae3e455caae..a2bdc4e729408a808accffbdea118ac603574168 100644 (file)
@@ -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;
 }