diff options
| author | Paul Eggert | 2012-08-26 02:26:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-26 02:26:45 -0700 |
| commit | 67dbec33441a9594c39778f642e196e304341b4a (patch) | |
| tree | 4cc7273ed9ecee63e483593302be295df97332b5 /src | |
| parent | d97af5a07f045ed1de8045bab25af384c21b08dd (diff) | |
| download | emacs-67dbec33441a9594c39778f642e196e304341b4a.tar.gz emacs-67dbec33441a9594c39778f642e196e304341b4a.zip | |
* fns.c (Fstring_to_unibyte): Adjust to str_to_unibyte change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -1100,7 +1100,7 @@ an error is signaled. */) | |||
| 1100 | { | 1100 | { |
| 1101 | ptrdiff_t chars = SCHARS (string); | 1101 | ptrdiff_t chars = SCHARS (string); |
| 1102 | unsigned char *str = xmalloc (chars); | 1102 | unsigned char *str = xmalloc (chars); |
| 1103 | ptrdiff_t converted = str_to_unibyte (SDATA (string), str, chars, 0); | 1103 | ptrdiff_t converted = str_to_unibyte (SDATA (string), str, chars); |
| 1104 | 1104 | ||
| 1105 | if (converted < chars) | 1105 | if (converted < chars) |
| 1106 | error ("Can't convert the %"pD"dth character to unibyte", converted); | 1106 | error ("Can't convert the %"pD"dth character to unibyte", converted); |