about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2005-08-17 19:17:40 +0000
committerWayne Davison <wayned@users.sourceforge.net>2005-08-17 19:17:40 +0000
commit610a691e1c34b806e89b67e8fa4fc00571c30f3f (patch)
tree64dfc53eab2aa9082f2bdd7c2bc5d98180c650f9
parent307c27e16fdc6e63551af7846d765e95749a8cd3 (diff)
downloadzsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.tar.gz
zsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.tar.xz
zsh-610a691e1c34b806e89b67e8fa4fc00571c30f3f.zip
Marked some #ifdef ZLE_UNICODE_SUPPORT lines (and their #endif lines)
with /**/ so that they would get copied to the .epro file.
-rw-r--r--Src/string.c2
-rw-r--r--Src/utils.c8
2 files changed, 10 insertions, 0 deletions
diff --git a/Src/string.c b/Src/string.c
index 0a7f200ab..b22c1bf66 100644
--- a/Src/string.c
+++ b/Src/string.c
@@ -54,6 +54,7 @@ ztrdup(const char *s)
     return t;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t *
@@ -67,6 +68,7 @@ wcs_ztrdup(const wchar_t *s)
     wcscpy(t, s);
     return t;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 
diff --git a/Src/utils.c b/Src/utils.c
index 96f18497f..8a887fa37 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -243,6 +243,7 @@ nicechar(int c)
     return buf;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t *
@@ -280,6 +281,7 @@ wcs_nicechar(wint_t c)
     *s = 0;
     return buf;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 
@@ -2493,6 +2495,7 @@ zarrdup(char **s)
     return y;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export wchar_t **
@@ -2506,6 +2509,7 @@ wcs_zarrdup(wchar_t **s)
 
     return y;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /**/
@@ -3106,6 +3110,7 @@ zputs(char const *s, FILE *stream)
     return 0;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export int
@@ -3127,6 +3132,7 @@ wcs_zputs(wchar_t const *s, FILE *stream)
     }
     return 0;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /* Create a visibly-represented duplicate of a string. */
@@ -3215,6 +3221,7 @@ niceztrlen(char const *s)
     return l;
 }
 
+/**/
 #ifdef ZLE_UNICODE_SUPPORT
 /**/
 mod_export size_t
@@ -3236,6 +3243,7 @@ wcs_nicewidth(wchar_t const *s)
     }
     return l;
 }
+/**/
 #endif /* ZLE_UNICODE_SUPPORT */
 
 /* check for special characters in the string */