aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/coding.h b/src/coding.h
index c182f182e67..834724cf340 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -1,10 +1,11 @@
1/* Header for coding system handler. 1/* Header for coding system handler.
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. 2 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 Licensed to the Free Software Foundation. 3 Copyright (C) 1995, 1997, 1998, 2000
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H14PRO021
4 Copyright (C) 2003 6 Copyright (C) 2003
5 National Institute of Advanced Industrial Science and Technology (AIST) 7 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H13PRO009 8 Registration Number H13PRO009
7 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
8 9
9This file is part of GNU Emacs. 10This file is part of GNU Emacs.
10 11
@@ -610,7 +611,7 @@ struct coding_system
610 611
611/* Decode the string STR using the specified coding system 612/* Decode the string STR using the specified coding system
612 for system functions, if any. */ 613 for system functions, if any. */
613#define DECODE_SYSTEM(name) \ 614#define DECODE_SYSTEM(str) \
614 (! NILP (Vlocale_coding_system) \ 615 (! NILP (Vlocale_coding_system) \
615 && !EQ (Vlocale_coding_system, make_number (0)) \ 616 && !EQ (Vlocale_coding_system, make_number (0)) \
616 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ 617 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \