]> git.eshelyaron.com Git - emacs.git/commitdiff
* Remove unused 'helper_save_window_excursion'
authorAndrea Corallo <akrl@sdf.org>
Tue, 9 Jun 2020 20:41:19 +0000 (22:41 +0200)
committerAndrea Corallo <andrea.corallo@arm.com>
Wed, 10 Jun 2020 12:33:34 +0000 (14:33 +0200)
* src/comp.c (helper_unwind_protect): Remove definition and
declaration.

src/comp.c

index 521cadcb10c8591ebc7a686a63de4015a05d075b..af61d76d46d156aa32efb5f5cac718ae0af950ff 100644 (file)
@@ -591,7 +591,7 @@ typedef struct {
 /*
    Helper functions called by the run-time.
 */
-Lisp_Object helper_save_window_excursion (Lisp_Object v1);
+
 void helper_unwind_protect (Lisp_Object handler);
 Lisp_Object helper_temp_output_buffer_setup (Lisp_Object x);
 Lisp_Object helper_unbind_n (Lisp_Object n);
@@ -4014,17 +4014,6 @@ DEFUN ("comp-libgccjit-version", Fcomp_libgccjit_version,
 /* for laziness. Change this if a performance impact is measured.             */
 /******************************************************************************/
 
-Lisp_Object
-helper_save_window_excursion (Lisp_Object v1)
-{
-  ptrdiff_t count1 = SPECPDL_INDEX ();
-  record_unwind_protect (restore_window_configuration,
-                        Fcurrent_window_configuration (Qnil));
-  v1 = Fprogn (v1);
-  unbind_to (count1, v1);
-  return v1;
-}
-
 void
 helper_unwind_protect (Lisp_Object handler)
 {