From: Paul Eggert Date: Sat, 18 Jun 2011 16:20:05 +0000 (-0700) Subject: * editfns.c: Omit unnecessary forward decls, to simplify future changes. X-Git-Tag: emacs-pretest-24.0.90~104^2~473^2~50 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a9e860e1fd747a70790fc75bbcd8fc8d7256b813;p=emacs.git * editfns.c: Omit unnecessary forward decls, to simplify future changes. --- diff --git a/src/ChangeLog b/src/ChangeLog index fdf145d7d95..b0a461fb108 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2011-06-18 Paul Eggert + * editfns.c: Omit unnecessary forward decls, to simplify future changes. + * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths. * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'. diff --git a/src/editfns.c b/src/editfns.c index 2d736bbc7e2..f0f8c9eb63f 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -86,21 +86,7 @@ extern Lisp_Object w32_get_internal_run_time (void); static void time_overflow (void) NO_RETURN; static int tm_diff (struct tm *, struct tm *); -static void find_field (Lisp_Object, Lisp_Object, Lisp_Object, - EMACS_INT *, Lisp_Object, EMACS_INT *); static void update_buffer_properties (EMACS_INT, EMACS_INT); -static Lisp_Object region_limit (int); -static size_t emacs_nmemftime (char *, size_t, const char *, - size_t, const struct tm *, int, int); -static void general_insert_function (void (*) (const char *, EMACS_INT), - void (*) (Lisp_Object, EMACS_INT, - EMACS_INT, EMACS_INT, - EMACS_INT, int), - int, ptrdiff_t, Lisp_Object *); -static Lisp_Object subst_char_in_region_unwind (Lisp_Object); -static Lisp_Object subst_char_in_region_unwind_1 (Lisp_Object); -static void transpose_markers (EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT, - EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT); static Lisp_Object Qbuffer_access_fontify_functions; static Lisp_Object Fuser_full_name (Lisp_Object);