summaryrefslogtreecommitdiff
path: root/source/prompt.h
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2009-05-29 21:32:02 +0000
committerAndrey Nazarov <skuller@skuller.net>2009-05-29 21:32:02 +0000
commit3ef036028a652f979a4197dd4a2ddd779e437597 (patch)
tree42c11d1e5396509e41d3776b80eaca3660a998db /source/prompt.h
parent454fc2e2eb975e359696850f07c071aa0736aac7 (diff)
Ran all source files through expand(1).
Diffstat (limited to 'source/prompt.h')
-rw-r--r--source/prompt.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/prompt.h b/source/prompt.h
index 33d0426..9caf34f 100644
--- a/source/prompt.h
+++ b/source/prompt.h
@@ -22,24 +22,24 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
// prompt.h
//
-#define HISTORY_SIZE 128
-#define HISTORY_MASK ( HISTORY_SIZE - 1 )
+#define HISTORY_SIZE 128
+#define HISTORY_MASK ( HISTORY_SIZE - 1 )
-#define MAX_MATCHES 1024
-#define MAX_PARTIAL 32
+#define MAX_MATCHES 1024
+#define MAX_PARTIAL 32
typedef struct commandPrompt_s {
- int inputLineNum;
- int historyLineNum;
+ int inputLineNum;
+ int historyLineNum;
- inputField_t inputLine;
- char *history[HISTORY_SIZE];
+ inputField_t inputLine;
+ char *history[HISTORY_SIZE];
char *search;
- int widthInChars;
+ int widthInChars;
qboolean tooMany;
- void (* q_printf( 1, 2 ) printf)( const char *fmt, ... );
+ void (* q_printf( 1, 2 ) printf)( const char *fmt, ... );
} commandPrompt_t;