aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2005-04-18 06:58:20 +0000
committerKenichi Handa2005-04-18 06:58:20 +0000
commit3100d59f49c407960e86ce0c6d4737975a84d6b4 (patch)
treed70172c162a8184563f140bae82712c7498d3e15 /src
parent4a4ae7ad21e9e53ed9a0006c39d69108333bc896 (diff)
downloademacs-3100d59f49c407960e86ce0c6d4737975a84d6b4.tar.gz
emacs-3100d59f49c407960e86ce0c6d4737975a84d6b4.zip
(Fstring_as_multibyte): Fix the change for syncing with
CVS head.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 6f59b85665c..d90630b7f30 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1072,7 +1072,12 @@ Otherwise it is a newly created string, with no text properties.
1072If STRING is unibyte and contains an individual 8-bit byte (i.e. not 1072If STRING is unibyte and contains an individual 8-bit byte (i.e. not
1073part of a correct utf-8 sequence), it is converted to the corresponding 1073part of a correct utf-8 sequence), it is converted to the corresponding
1074multibyte character of charset `eight-bit'. 1074multibyte character of charset `eight-bit'.
1075See also `string-to-multibyte'. */) 1075See also `string-to-multibyte'.
1076
1077Beware, this often doesn't really do what you think it does.
1078It is similar to (decode-coding-string STRING 'utf-8-emacs).
1079If you're not sure, whether to use `string-as-multibyte' or
1080`string-to-multibyte', use `string-to-multibyte'. */)
1076 (string) 1081 (string)
1077 Lisp_Object string; 1082 Lisp_Object string;
1078{ 1083{