From 5f840b1570188a0c04b7dac265929eddf6b5b1d7 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 26 Apr 2012 09:03:26 +0000 Subject: [PATCH] (DECODE_ADD_UCS_CHAR): Add `static'. --- src/text-coding.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/text-coding.c b/src/text-coding.c index 840258d..4089607 100644 --- a/src/text-coding.c +++ b/src/text-coding.c @@ -1,8 +1,8 @@ /* Code conversion functions. Copyright (C) 1991, 1995 Free Software Foundation, Inc. Copyright (C) 1995 Sun Microsystems, Inc. - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2011 - MORIOKA Tomohiko + Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2011, + 2012 MORIOKA Tomohiko This file is part of XEmacs. @@ -2197,8 +2197,8 @@ do { \ } \ } while (0) -/* INLINE_HEADER */ void DECODE_ADD_UCS_CHAR(Emchar c, unsigned_char_dynarr* dst); -/* INLINE_HEADER */ void +static void DECODE_ADD_UCS_CHAR(Emchar c, unsigned_char_dynarr* dst); +static void DECODE_ADD_UCS_CHAR(Emchar c, unsigned_char_dynarr* dst) { if ( c <= 0x7f ) -- 1.7.10.4