summaryrefslogtreecommitdiff
path: root/sal/textenc/unichars.c
diff options
context:
space:
mode:
Diffstat (limited to 'sal/textenc/unichars.c')
-rw-r--r--sal/textenc/unichars.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sal/textenc/unichars.c b/sal/textenc/unichars.c
index 454e057c7f84..0d4131699732 100644
--- a/sal/textenc/unichars.c
+++ b/sal/textenc/unichars.c
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -134,3 +135,5 @@ sal_uInt32 ImplCombineSurrogates(sal_uInt32 nHigh, sal_uInt32 nLow)
"specification violation");
return (((nHigh & 0x3FF) << 10) | (nLow & 0x3FF)) + 0x10000;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */