diff options
| author | Andrea Corallo | 2019-12-24 17:41:44 +0100 |
|---|---|---|
| committer | Andrea Corallo | 2020-01-01 11:38:16 +0100 |
| commit | ef59b67e4657fa80d1528b9d476c67f01abecc35 (patch) | |
| tree | 8827eea8a193014bbc7df20b9e7974ae99509bbc /src/doc.c | |
| parent | 2ccce1bc3954ce5f2faa0dcf7fa68ec5cae710ca (diff) | |
| download | emacs-ef59b67e4657fa80d1528b9d476c67f01abecc35.tar.gz emacs-ef59b67e4657fa80d1528b9d476c67f01abecc35.zip | |
mitigate ifdef proliferation
Diffstat (limited to 'src/doc.c')
| -rw-r--r-- | src/doc.c | 2 |
1 files changed, 0 insertions, 2 deletions
| @@ -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 | { |