* src/doc.c (Fsnarf_documentation): Fix bug#48019
Don't presume that `custom-delayed-init-variables` holds a list.
This commit is contained in:
parent
1cf03f290b
commit
7c901d90e6
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ the same file name is found in the `doc-directory'. */)
|
|||
Lisp_Object delayed_init =
|
||||
find_symbol_value (intern ("custom-delayed-init-variables"));
|
||||
|
||||
if (EQ (delayed_init, Qunbound)) delayed_init = Qnil;
|
||||
if (!CONSP (delayed_init)) delayed_init = Qnil;
|
||||
|
||||
CHECK_STRING (filename);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue