diff options
| author | Paul Eggert | 2014-04-05 12:30:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-04-05 12:30:36 -0700 |
| commit | faa521749378dbfd97f49a0e5c48f6da2ce1ddba (patch) | |
| tree | d470dbfa3328aaeffe5cba065103e237238a13be /src/coding.c | |
| parent | 1b058e42524353c9ff133ea330876ed2d39b6515 (diff) | |
| download | emacs-faa521749378dbfd97f49a0e5c48f6da2ce1ddba.tar.gz emacs-faa521749378dbfd97f49a0e5c48f6da2ce1ddba.zip | |
Prefer 'ARRAYELTS (x)' to 'sizeof x / sizeof *x'.
* alloc.c (memory_full):
* charset.c (syms_of_charset):
* doc.c (Fsnarf_documentation):
* emacs.c (main):
* font.c (BUILD_STYLE_TABLE):
* keyboard.c (make_lispy_event):
* profiler.c (setup_cpu_timer):
* xgselect.c (xg_select):
* xterm.c (record_event, STORE_KEYSYM_FOR_DEBUG):
Use ARRAYELTS.
* font.c (FONT_PROPERTY_TABLE_SIZE): Remove.
Replace the only use with ARRAYELTS (font_property_table).
* xfaces.c (DIM): Remove. All uses replaced by ARRAYELTS.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 654e39c0e3d..fbe14f1695f 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -8443,11 +8443,11 @@ from_unicode (Lisp_Object str) | |||
| 8443 | } | 8443 | } |
| 8444 | 8444 | ||
| 8445 | Lisp_Object | 8445 | Lisp_Object |
| 8446 | from_unicode_buffer (const wchar_t* wstr) | 8446 | from_unicode_buffer (const wchar_t *wstr) |
| 8447 | { | 8447 | { |
| 8448 | return from_unicode ( | 8448 | return from_unicode ( |
| 8449 | make_unibyte_string ( | 8449 | make_unibyte_string ( |
| 8450 | (char*) wstr, | 8450 | (char *) wstr, |
| 8451 | /* we get one of the two final 0 bytes for free. */ | 8451 | /* we get one of the two final 0 bytes for free. */ |
| 8452 | 1 + sizeof (wchar_t) * wcslen (wstr))); | 8452 | 1 + sizeof (wchar_t) * wcslen (wstr))); |
| 8453 | } | 8453 | } |