diff options
| author | Stefan Monnier | 2021-04-29 18:11:04 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2021-04-29 18:11:04 -0400 |
| commit | 7c901d90e620b4d3651b86c13faf1e81eeb3db10 (patch) | |
| tree | 35dbc6fb62407dfafe20fd7c608a0fe5a3a07127 /src | |
| parent | 1cf03f290bd02082c2ffa25a9adf27203334d36c (diff) | |
| download | emacs-7c901d90e620b4d3651b86c13faf1e81eeb3db10.tar.gz emacs-7c901d90e620b4d3651b86c13faf1e81eeb3db10.zip | |
* src/doc.c (Fsnarf_documentation): Fix bug#48019
Don't presume that `custom-delayed-init-variables` holds a list.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -550,7 +550,7 @@ the same file name is found in the `doc-directory'. */) | |||
| 550 | Lisp_Object delayed_init = | 550 | Lisp_Object delayed_init = |
| 551 | find_symbol_value (intern ("custom-delayed-init-variables")); | 551 | find_symbol_value (intern ("custom-delayed-init-variables")); |
| 552 | 552 | ||
| 553 | if (EQ (delayed_init, Qunbound)) delayed_init = Qnil; | 553 | if (!CONSP (delayed_init)) delayed_init = Qnil; |
| 554 | 554 | ||
| 555 | CHECK_STRING (filename); | 555 | CHECK_STRING (filename); |
| 556 | 556 | ||