aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-02-12 03:34:52 +0000
committernyamatongwe <devnull@localhost>2002-02-12 03:34:52 +0000
commit11d2193b5c81e3c53b5f7d4c6db2b72b4228ff68 (patch)
tree8fe49a32298d50683cafe1b03bf44a4d5dd32920 /src/Document.cxx
parentf680b6eca633a8f8e5849554bfe8f7117fa625b6 (diff)
downloadscintilla-mirror-11d2193b5c81e3c53b5f7d4c6db2b72b4228ff68.tar.gz
Made lexer objects const so they do not show up in map as static / globals.
File specific inline functions marker as static to ensure no bad linking.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r--src/Document.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index 8b40806f3..76695efe5 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -19,7 +19,7 @@
#include "RESearch.h"
// This is ASCII specific but is safe with chars >= 0x80
-inline bool isspacechar(unsigned char ch) {
+static inline bool isspacechar(unsigned char ch) {
return (ch == ' ') || ((ch >= 0x09) && (ch <= 0x0d));
}