aboutsummaryrefslogtreecommitdiffstats
path: root/src/comp.c
diff options
context:
space:
mode:
authorAndrea Corallo2019-09-05 21:47:35 +0200
committerAndrea Corallo2020-01-01 11:37:44 +0100
commit9913638cc596a018c7d687652a3abb61325dc4f1 (patch)
tree309024181997a61f5519f38559d31f11a9f37134 /src/comp.c
parentff7093d74b51f094b65314e3567fc96a3a37ffdf (diff)
downloademacs-9913638cc596a018c7d687652a3abb61325dc4f1.tar.gz
emacs-9913638cc596a018c7d687652a3abb61325dc4f1.zip
use nrevese where necessary
Diffstat (limited to 'src/comp.c')
-rw-r--r--src/comp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index ebc4e8fba0e..398e4419581 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -1688,7 +1688,7 @@ emit_ctxt_code (void)
1688 EMACS_UINT d_reloc_len = 1688 EMACS_UINT d_reloc_len =
1689 XFIXNUM (FUNCALL1 (hash-table-count, 1689 XFIXNUM (FUNCALL1 (hash-table-count,
1690 FUNCALL1 (comp-ctxt-data-relocs-idx, Vcomp_ctxt))); 1690 FUNCALL1 (comp-ctxt-data-relocs-idx, Vcomp_ctxt)));
1691 Lisp_Object d_reloc = Freverse (FUNCALL1 (comp-ctxt-data-relocs-l, Vcomp_ctxt)); 1691 Lisp_Object d_reloc = Fnreverse (FUNCALL1 (comp-ctxt-data-relocs-l, Vcomp_ctxt));
1692 d_reloc = Fvconcat (1, &d_reloc); 1692 d_reloc = Fvconcat (1, &d_reloc);
1693 1693
1694 comp.data_relocs = 1694 comp.data_relocs =
@@ -1741,7 +1741,7 @@ emit_ctxt_code (void)
1741 } 1741 }
1742 1742
1743 Lisp_Object f_reloc_vec = make_vector (n_frelocs, Qnil); 1743 Lisp_Object f_reloc_vec = make_vector (n_frelocs, Qnil);
1744 f_reloc_list = Freverse (f_reloc_list); 1744 f_reloc_list = Fnreverse (f_reloc_list);
1745 ptrdiff_t i = 0; 1745 ptrdiff_t i = 0;
1746 FOR_EACH_TAIL (f_reloc_list) 1746 FOR_EACH_TAIL (f_reloc_list)
1747 { 1747 {