GNU bug report logs -
#19172
[PATCH 1/1] Remove unused funcs that cause a building error
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 22 Jun 2016 16:49:01 +0200
with message-id <87y45xs2hu.fsf <at> pobox.com>
and subject line Re: bug#19172: [PATCH 1/1] Remove unused funcs that cause a building error
has caused the debbugs.gnu.org bug report #19172,
regarding [PATCH 1/1] Remove unused funcs that cause a building error
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
19172: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=19172
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Remove unused static inline functions str_upcase_l() and
str_downcase_l() that cause the compilation error
'dereferencing pointer to incomplete type' when building
for ARM using a buildroot-generated toolchain.
Signed-off-by: Pedro Aguilar <paguilar <at> paguilar.org>
---
libguile/i18n.c | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/libguile/i18n.c b/libguile/i18n.c
index c6b9b84..32278bd 100644
--- a/libguile/i18n.c
+++ b/libguile/i18n.c
@@ -851,26 +851,6 @@ str_downcase (register char *dst, register const char *src)
*dst = '\0';
}
-#ifdef USE_GNU_LOCALE_API
-static inline void
-str_upcase_l (register char *dst, register const char *src,
- scm_t_locale locale)
-{
- for (; *src != '\0'; src++, dst++)
- *dst = toupper_l (*src, locale);
- *dst = '\0';
-}
-
-static inline void
-str_downcase_l (register char *dst, register const char *src,
- scm_t_locale locale)
-{
- for (; *src != '\0'; src++, dst++)
- *dst = tolower_l (*src, locale);
- *dst = '\0';
-}
-#endif
-
SCM_DEFINE (scm_string_locale_lt, "string-locale<?", 2, 1, 0,
(SCM s1, SCM s2, SCM locale),
--
1.9.1
[Message part 3 (message/rfc822, inline)]
Thanks for the patch! I applied a version that also deleted the
previous two static inline helpers. Weird to have them around. Will be
in 2.0.12 and 2.1.4.
Cheers,
Andy
On Tue 25 Nov 2014 00:14, Pedro Aguilar <paguilar <at> paguilar.org> writes:
> Remove unused static inline functions str_upcase_l() and
> str_downcase_l() that cause the compilation error
> 'dereferencing pointer to incomplete type' when building
> for ARM using a buildroot-generated toolchain.
>
> Signed-off-by: Pedro Aguilar <paguilar <at> paguilar.org>
> ---
> libguile/i18n.c | 20 --------------------
> 1 file changed, 20 deletions(-)
>
> diff --git a/libguile/i18n.c b/libguile/i18n.c
> index c6b9b84..32278bd 100644
> --- a/libguile/i18n.c
> +++ b/libguile/i18n.c
> @@ -851,26 +851,6 @@ str_downcase (register char *dst, register const char *src)
> *dst = '\0';
> }
>
> -#ifdef USE_GNU_LOCALE_API
> -static inline void
> -str_upcase_l (register char *dst, register const char *src,
> - scm_t_locale locale)
> -{
> - for (; *src != '\0'; src++, dst++)
> - *dst = toupper_l (*src, locale);
> - *dst = '\0';
> -}
> -
> -static inline void
> -str_downcase_l (register char *dst, register const char *src,
> - scm_t_locale locale)
> -{
> - for (; *src != '\0'; src++, dst++)
> - *dst = tolower_l (*src, locale);
> - *dst = '\0';
> -}
> -#endif
> -
>
> SCM_DEFINE (scm_string_locale_lt, "string-locale<?", 2, 1, 0,
> (SCM s1, SCM s2, SCM locale),
This bug report was last modified 9 years and 52 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.