]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove recursion from store_function_docstring
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Jun 2016 18:46:30 +0000 (11:46 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 14 Jun 2016 19:21:00 +0000 (12:21 -0700)
* src/doc.c (store_function_docstring):
Refactor to avoid the need for C-level recursion.

src/doc.c

index 017dd173d0ace2f58cb5cc5392960601143a7f17..7107580cf8b729070c2426dec13a46113aab5474 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -481,15 +481,10 @@ store_function_docstring (Lisp_Object obj, ptrdiff_t offset)
 
   /* The type determines where the docstring is stored.  */
 
-  /* Lisp_Subrs have a slot for it.  */
-  if (SUBRP (fun))
-    {
-      intptr_t negative_offset = - offset;
-      XSUBR (fun)->doc = (char *) negative_offset;
-    }
-
   /* If it's a lisp form, stick it in the form.  */
-  else if (CONSP (fun))
+  if (CONSP (fun) && EQ (XCAR (fun), Qmacro))
+    fun = XCDR (fun);
+  if (CONSP (fun))
     {
       Lisp_Object tem;
 
@@ -503,8 +498,13 @@ store_function_docstring (Lisp_Object obj, ptrdiff_t offset)
               correctness is quite delicate.  */
            XSETCAR (tem, make_number (offset));
        }
-      else if (EQ (tem, Qmacro))
-       store_function_docstring (XCDR (fun), offset);
+    }
+
+  /* Lisp_Subrs have a slot for it.  */
+  else if (SUBRP (fun))
+    {
+      intptr_t negative_offset = - offset;
+      XSUBR (fun)->doc = (char *) negative_offset;
     }
 
   /* Bytecode objects sometimes have slots for it.  */