diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-09-23 14:27:57 -0600 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2010-09-25 11:15:30 +0200 |
commit | 12e948b5474fc0d1d67402496f5beb4bf79b6e43 (patch) | |
tree | 5686fbb551e379a835e2fa4e9c462e5a7c8892b4 /handy.h | |
parent | 7d79683eb03b764d618fb999bbf03de585bc88dd (diff) | |
download | perl-12e948b5474fc0d1d67402496f5beb4bf79b6e43.tar.gz |
Indent a comment better
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -563,7 +563,7 @@ patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc # define isUPPER(c) ((c) >= 'A' && (c) <= 'Z') # define isXDIGIT(c) (isDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F')) -/* ASCII casing. */ + /* ASCII casing. */ # define toLOWER(c) (isUPPER(c) ? (c) + ('a' - 'A') : (c)) # define toUPPER(c) (isLOWER(c) ? (c) - ('a' - 'A') : (c)) #endif |