aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.h
diff options
context:
space:
mode:
authorKenichi Handa2005-10-27 00:45:44 +0000
committerKenichi Handa2005-10-27 00:45:44 +0000
commit581e742781883016f7c612b59b225a1bcb1fa36f (patch)
tree4acd8b97e23f1e7ce24d7c0e23f8896df623b492 /src/coding.h
parent4cec63a9edaf722cf0e3afb6af207ffe8f1575e9 (diff)
downloademacs-581e742781883016f7c612b59b225a1bcb1fa36f.tar.gz
emacs-581e742781883016f7c612b59b225a1bcb1fa36f.zip
(DECODE_SYSTEM): Fix argument name; name->str.
Diffstat (limited to 'src/coding.h')
-rw-r--r--src/coding.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.h b/src/coding.h
index 1ea1dafd54b..9a158ef5ffb 100644
--- a/src/coding.h
+++ b/src/coding.h
@@ -601,7 +601,7 @@ struct coding_system
601 601
602/* Decode the string STR using the specified coding system 602/* Decode the string STR using the specified coding system
603 for system functions, if any. */ 603 for system functions, if any. */
604#define DECODE_SYSTEM(name) \ 604#define DECODE_SYSTEM(str) \
605 (! NILP (Vlocale_coding_system) \ 605 (! NILP (Vlocale_coding_system) \
606 && !EQ (Vlocale_coding_system, make_number (0)) \ 606 && !EQ (Vlocale_coding_system, make_number (0)) \
607 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \ 607 ? code_convert_string_norecord (str, Vlocale_coding_system, 0) \