summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cio.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/cio.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/cio.h')
-rw-r--r--crawl-ref/source/cio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/cio.h b/crawl-ref/source/cio.h
index 7755a55fd0..6aed178091 100644
--- a/crawl-ref/source/cio.h
+++ b/crawl-ref/source/cio.h
@@ -49,8 +49,8 @@ int m_getch();
int unmangle_direction_keys(int keyin, KeymapContext keymap = KMC_DEFAULT,
bool fake_ctrl = true, bool fake_shift = true);
-int nowrapcprintf( int wrapcol, const char *s, ... );
-int nowrap_eol_cprintf( const char *s, ... );
+int nowrapcprintf(int wrapcol, const char *s, ...);
+int nowrap_eol_cprintf(const char *s, ...);
// Returns zero if user entered text and pressed Enter, otherwise returns the
// key pressed that caused the exit, usually Escape.
@@ -58,10 +58,10 @@ int nowrap_eol_cprintf( const char *s, ... );
// If keyproc is provided, it must return 1 for normal processing, 0 to exit
// normally (pretend the user pressed Enter), or -1 to exit as if the user
// pressed Escape
-int cancelable_get_line( char *buf,
+int cancelable_get_line(char *buf,
int len,
input_history *mh = NULL,
- int (*keyproc)(int &c) = NULL );
+ int (*keyproc)(int &c) = NULL);
// Do not use this templated function directly. Use the macro below instead.
template<int> static int cancelable_get_line_autohist_temp(char *buf, int len)