aboutsummaryrefslogtreecommitdiffstats
path: root/src/doc.c
diff options
context:
space:
mode:
authorAndrea Corallo2019-12-24 17:41:44 +0100
committerAndrea Corallo2020-01-01 11:38:16 +0100
commitef59b67e4657fa80d1528b9d476c67f01abecc35 (patch)
tree8827eea8a193014bbc7df20b9e7974ae99509bbc /src/doc.c
parent2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca (diff)
downloademacs-ef59b67e4657fa80d1528b9d476c67f01abecc35.tar.gz
emacs-ef59b67e4657fa80d1528b9d476c67f01abecc35.zip
mitigate ifdef proliferation
Diffstat (limited to 'src/doc.c')
-rw-r--r--src/doc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc.c b/src/doc.c
index 9e1d8392787..2c96fc15a7c 100644
--- a/src/doc.c
+++ b/src/doc.c
@@ -510,12 +510,10 @@ store_function_docstring (Lisp_Object obj, EMACS_INT offset)
510 XSETCAR (tem, make_fixnum (offset)); 510 XSETCAR (tem, make_fixnum (offset));
511 } 511 }
512 } 512 }
513#ifdef HAVE_NATIVE_COMP
514 else if (SUBRP_NATIVE_COMPILEDP (fun)) 513 else if (SUBRP_NATIVE_COMPILEDP (fun))
515 { 514 {
516 XSUBR (fun)->native_doc = Qnil; 515 XSUBR (fun)->native_doc = Qnil;
517 } 516 }
518#endif
519 /* Lisp_Subrs have a slot for it. */ 517 /* Lisp_Subrs have a slot for it. */
520 else if (SUBRP (fun)) 518 else if (SUBRP (fun))
521 { 519 {