diff options
| author | Paul Eggert | 2014-09-17 11:27:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-09-17 11:27:36 -0700 |
| commit | 9356a87288edd2380ce27cd9775046675cd26f8c (patch) | |
| tree | b72b7d0a6c8ea65d594172a403df29fabd5e13c5 /src/alloc.c | |
| parent | 18f88a41a740b43297e70ba169e5c2f847280d32 (diff) | |
| download | emacs-9356a87288edd2380ce27cd9775046675cd26f8c.tar.gz emacs-9356a87288edd2380ce27cd9775046675cd26f8c.zip | |
Fix minor problems found by static checking.
* alloc.c, lisp.h (SAVE_TYPE_INT_OBJ, make_save_int_obj):
Remove; now unused.
* buffer.h (decode_buffer): Doc and indentation fixes.
* fns.c (Qstring_collate_lessp, Qstring_collate_equalp): Now static.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/alloc.c b/src/alloc.c index d28db1e58b8..2dd5fae7d8e 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3657,17 +3657,6 @@ make_save_ptr_int (void *a, ptrdiff_t b) | |||
| 3657 | return val; | 3657 | return val; |
| 3658 | } | 3658 | } |
| 3659 | 3659 | ||
| 3660 | Lisp_Object | ||
| 3661 | make_save_int_obj (ptrdiff_t a, Lisp_Object b) | ||
| 3662 | { | ||
| 3663 | Lisp_Object val = allocate_misc (Lisp_Misc_Save_Value); | ||
| 3664 | struct Lisp_Save_Value *p = XSAVE_VALUE (val); | ||
| 3665 | p->save_type = SAVE_TYPE_INT_OBJ; | ||
| 3666 | p->data[0].integer = a; | ||
| 3667 | p->data[1].object = b; | ||
| 3668 | return val; | ||
| 3669 | } | ||
| 3670 | |||
| 3671 | #if ! (defined USE_X_TOOLKIT || defined USE_GTK) | 3660 | #if ! (defined USE_X_TOOLKIT || defined USE_GTK) |
| 3672 | Lisp_Object | 3661 | Lisp_Object |
| 3673 | make_save_ptr_ptr (void *a, void *b) | 3662 | make_save_ptr_ptr (void *a, void *b) |