Fix crash when escaping command_documentation

master
Allen Webster 2020-01-15 10:16:13 -08:00
parent 4a8febcdde
commit e977d1d312
1 changed files with 4 additions and 2 deletions

View File

@ -195,8 +195,10 @@ CUSTOM_DOC("Prompts the user to select a command then loads a doc buffer for tha
Scratch_Block scratch(app);
Doc_Cluster *docs = doc_commands(scratch);
Doc_Page *page = get_doc_page_from_user(app, docs, "Doc Page:");
Buffer_ID buffer = render_doc_page(app, page);
view_set_buffer(app, view, buffer, 0);
if (page != 0){
Buffer_ID buffer = render_doc_page(app, page);
view_set_buffer(app, view, buffer, 0);
}
}
}