]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename lexspace-make-from -> lexspace-make
authorAndrea Corallo <akrl@sdf.org>
Fri, 8 May 2020 11:08:03 +0000 (12:08 +0100)
committerAndrea Corallo <akrl@sdf.org>
Fri, 8 May 2020 13:30:13 +0000 (14:30 +0100)
src/lexspaces.c

index 6faf80505e4175580043052761c7d8c21ae3f1b0..962cd606fd76e82b414aee53731ce05f3b7a364b 100644 (file)
@@ -58,7 +58,7 @@ lexspace_copy (EMACS_INT dst, EMACS_INT src)
 /* Entry points exposed to Lisp.  */
 /**********************************/
 
-DEFUN ("lexspace-make-from", Flexspace_make_from, Slexspace_make_from, 2, 2, 0,
+DEFUN ("lexspace-make", Flexspace_make, Slexspace_make, 2, 2, 0,
        doc: /* Make lexspace NAME from SRC.   */)
   (Lisp_Object name, Lisp_Object src)
 {
@@ -134,5 +134,5 @@ syms_of_lexspaces (void)
              doc: /* Internal use.  */);
   defsubr (&Sin_lexspace);
   defsubr (&Slexspace_import_symbol);
-  defsubr (&Slexspace_make_from);
+  defsubr (&Slexspace_make);
 }