summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-12 10:52:04 +0100
committerBruno Haible <bruno@clisp.org>2009-12-12 10:53:09 +0100
commit4b8650c5e098e010b1468430e5e9cf4f5b71ba76 (patch)
treef30c53e51166b8be448787657c6971d65036d431
parent654bd28315a97d810af1cb2e32b5db66a60b9460 (diff)
downloadlibunistring-4b8650c5e098e010b1468430e5e9cf4f5b71ba76.tar.gz
Untabify.
-rw-r--r--ChangeLog5
-rw-r--r--lib/libunistring.rc2
-rw-r--r--woe32dll/export.h16
3 files changed, 14 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index b2d0d32..22e17b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-12 Bruno Haible <bruno@clisp.org>
+
+ * lib/libunistring.rc: Untabify.
+ * woe32dll/export.h: Likewise.
+
2009-12-09 Bruno Haible <bruno@clisp.org>
Ensure _UNUSED_PARAMETER_ is defined in the public header files.
diff --git a/lib/libunistring.rc b/lib/libunistring.rc
index f1b51af..e167ebb 100644
--- a/lib/libunistring.rc
+++ b/lib/libunistring.rc
@@ -19,7 +19,7 @@ BEGIN
BEGIN
BLOCK "04090000" /* Lang = US English, Charset = ASCII */
BEGIN
- VALUE "Comments", "This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 3 or later. You should have received a copy of the GNU Lesser General Public License along with this library; if not, see <http://www.gnu.org/licenses/>\0"
+ VALUE "Comments", "This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 3 or later. You should have received a copy of the GNU Lesser General Public License along with this library; if not, see <http://www.gnu.org/licenses/>\0"
VALUE "CompanyName", "Free Software Foundation\0"
VALUE "FileDescription", "LGPLed libunistring for Windows NT/2000/XP/Vista and Windows 95/98/ME\0"
VALUE "FileVersion", PACKAGE_VERSION_STRING "\0"
diff --git a/woe32dll/export.h b/woe32dll/export.h
index 3e8a21f..6404832 100644
--- a/woe32dll/export.h
+++ b/woe32dll/export.h
@@ -95,12 +95,12 @@
/* Ensure that the variable x is exported from the library, and that a
pseudo-variable IMP(x) is available. */
#define VARIABLE(x) \
- /* Export x without redefining x. This code was found by compiling a \
- snippet: \
- extern __declspec(dllexport) int x; int x = 42; */ \
- asm (".section .drectve\n"); \
- asm (".ascii \" -export:" #x ",data\"\n"); \
- asm (".data\n"); \
- /* Allocate a pseudo-variable IMP(x). */ \
- extern int x; \
+ /* Export x without redefining x. This code was found by compiling a \
+ snippet: \
+ extern __declspec(dllexport) int x; int x = 42; */ \
+ asm (".section .drectve\n"); \
+ asm (".ascii \" -export:" #x ",data\"\n"); \
+ asm (".data\n"); \
+ /* Allocate a pseudo-variable IMP(x). */ \
+ extern int x; \
void * IMP(x) = &x;