summaryrefslogtreecommitdiff
path: root/defines.o2
diff options
context:
space:
mode:
Diffstat (limited to 'defines.o2')
-rw-r--r--defines.o29
1 files changed, 6 insertions, 3 deletions
diff --git a/defines.o2 b/defines.o2
index a4755bd46887..6b540f739c3f 100644
--- a/defines.o2
+++ b/defines.o2
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1984-2024 Mark Nudelman
+ * Copyright (C) 1984-2025 Mark Nudelman
*
* You may distribute under the terms of either the GNU General Public
* License or the Less License, as specified in the README file.
@@ -191,6 +191,7 @@
#define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */
#define TAGLINE_SIZE 512 /* Max size of line in tags file */
#define TABSTOP_MAX 32 /* Max number of custom tab stops */
+#define LINENUM_POOL 200 /* Size of line number pool */
#else /* more reasonable sizes for modern machines */
#define CMDBUF_SIZE 2048 /* Buffer for multichar commands */
#define UNGOT_SIZE 200 /* Max chars to unget() */
@@ -201,6 +202,7 @@
#define TERMSBUF_SIZE 1024 /* Buffer to hold termcap strings */
#define TAGLINE_SIZE 1024 /* Max size of line in tags file */
#define TABSTOP_MAX 128 /* Max number of custom tab stops */
+#define LINENUM_POOL 1024 /* Size of line number pool */
#endif
/* Define to `long' if <sys/types.h> doesn't define. */
@@ -245,10 +247,11 @@
#define HAVE_FILENO 1
/* Define HAVE_ERRNO if you have the errno variable */
-/* Define MUST_DEFINE_ERRNO if you have errno but it is not define
- * in errno.h */
#define HAVE_ERRNO 1
+/* Define MUST_DEFINE_ERRNO if you have errno but it is not defined in errno.h */
/* #undef MUST_DEFINE_ERRNO */
+/* Define HAVE_SETTABLE_ERRNO if the errno variable can be assigned to. */
+#define HAVE_SETTABLE_ERRNO 1
/* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
#define HAVE_SYS_ERRLIST 1