diff options
| author | Miles Bader | 2006-01-16 08:37:27 +0000 |
|---|---|---|
| committer | Miles Bader | 2006-01-16 08:37:27 +0000 |
| commit | 41882805d6711e32ac0f066119226d84dbdedc13 (patch) | |
| tree | 44f756cef3fbc4de2f229e93613a1a326da7f55d /src/coding.h | |
| parent | 6a2bd1a5019d2130c87ac5cf17f1322bf614b624 (diff) | |
| parent | 28f74fdf77eaab2e9daf54e2d5b0b729c5201e4f (diff) | |
| download | emacs-41882805d6711e32ac0f066119226d84dbdedc13.tar.gz emacs-41882805d6711e32ac0f066119226d84dbdedc13.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 616-696)
- Add lisp/mh-e/.arch-inventory
- Update from CVS
- Merge from gnus--rel--5.10
- Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords.
- lisp/gnus/ChangeLog: Remove duplicate entry
* gnus--rel--5.10 (patch 147-181)
- Update from CVS
- Merge from emacs--cvs-trunk--0
- Update from CVS: lisp/mml.el (mml-preview): Doc fix.
- Update from CVS: texi/message.texi: Fix default values.
- Update from CVS: texi/gnus.texi (RSS): Addition.
Diffstat (limited to 'src/coding.h')
| -rw-r--r-- | src/coding.h | 9 |
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 | ||
| 9 | This file is part of GNU Emacs. | 10 | This 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) \ |